-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlanding-page.css
More file actions
130 lines (112 loc) · 2.17 KB
/
landing-page.css
File metadata and controls
130 lines (112 loc) · 2.17 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
.hero-banner-image {
background-color: white;
border-radius: 50%;
width: 8rem;
height: 8rem;
}
.feature-card-image:hover {
filter: brightness(1.2);
}
.hero__title {
margin-bottom: 0;
}
.hero__subtitle {
width: 35rem;
font-weight: 700;
margin-top: 0;
line-height: 1;
font-size: 36pt;
text-align: left;
}
.hero__description {
font-size: 1.2rem;
line-height: 1.25;
text-align: left;
}
.hero__subscript {
font-size: 1rem;
line-height: 1;
text-align: left;
font-style: italic;
color: white;
}
.hero__container {
text-align: center;
max-width: 60%;
margin: 0 auto;
font-size: 20pt;
display: flex;
flex-direction: row;
align-items: center;
}
.hero__container div {
margin: 0 1rem;
}
.hero-button {
color: white;
display: inline-block;
border: 2px solid white;
border-radius: 2px;
padding: 5pt 10pt;
margin-top: 20px;
transition: all 0.25s;
transition: all 0.5s ease;
width: 15em;
}
/* Make sure these use the same style as the navbar buttons */
.hero-button:hover {
text-decoration: none;
border-width: 2px;
background-color: white;
color: var(--text-color-green);
border-color: var(--text-color-green);
transition: all 0.5s ease;
}
.hero-button:active {
transition: all 0.5s ease;
}
.hero-buttons-container {
display: flex;
flex-direction: column;
align-items: center;
}
.hero-text {
color: white;
font-size: 1rem;
margin: 0px 10px;
}
.hero-text:hover,
.hero-text:active {
background-color: white;
color: var(--text-color-green);
border-color: var(--text-color-green);
}
.hero-summary-blurb {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
border-bottom: 2px solid #23c09d;
}
.hero-summary-blurb p {
padding: 10px 10px;
margin: 0px;
}
#hero-banner {
padding: 2rem 0;
}
.hero__quickstart-button {
border: 2px solid var(--ifm-color-primary);
color: var(--ifm-color-primary);
display: flex;
justify-content: center;
margin: auto;
margin-bottom: 1em;
}
.hero__quickstart-button:hover,
.hero__quickstart-button:active {
border-color: var(--ifm-color-primary);
color: white;
background-color: var(--ifm-color-primary);
}