aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/overrides/assets/stylesheets/home.css
blob: 76f585b58073814ff4321a33d58016ddab65f9ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
.hero {
  padding: 32px 2.8rem;
  color: var(--md-primary-bg-color);
  background: linear-gradient(
    to bottom,
    var(--md-primary-fg-color),
    hsla(160deg, 47%, 55%, 1) 99%,
    #fff 99%
  );
}

.hero-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.hero-content {
  flex: 0 0 40%;
}

.hero-title {
  height: 4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.hero-title > img {
  max-height: 100%;
  width: auto;
}

.hero-title > h1 {
  margin: 0 0 0 0.5rem;
  font-size: 4rem;
  line-height: 1;
  color: currentColor;
  font-weight: 700;
}

.hero-image {
  width: 17rem;
  height: auto;
  flex: 0 0 50%;
  transform: perspective(300px) rotate3D(0, 1, 0, -5deg);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}

.hero .md-button {
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  color: var(--md-primary-bg-color);
}

.hero .md-button-primary {
  background-color: var(--md-primary-bg-color);
  color: hsla(280deg, 37%, 48%, 1);
  border-color: var(--md-primary-bg-color);
}

.hero .md-button:focus,
.hero .md-button:hover {
  background-color: var(--md-accent-fg-color);
  color: var(--md-default-bg-color);
  border-color: var(--md-accent-fg-color);
}

.md-header {
  position: initial;
}

.md-main__inner {
  margin: 0;
}

.md-content {
  display: none;
}