-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
225 lines (200 loc) · 4.27 KB
/
style.css
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap");
body {
font-family: "Open Sans", sans-serif;
color: #828eac;
}
nav {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
nav img.logonav {
width: 50px;
margin: 10px;
}
nav ul.menu li {
display: inline;
list-style-type: none;
margin: 0 20px;
color: #828eac;
font-size: 15px;
}
nav ul.log li {
display: inline;
list-style-type: none;
font-size: 15px;
color: #127af1;
}
nav ul.log li.signup {
padding: 10px 16px;
margin: 0 20px;
border-radius: 8px;
border: 1px;
border-color: #127af1;
border-style: solid;
}
h2 {
font-weight: 600;
color: #2d3a58;
font-size: 50px;
margin: 0;
}
p {
margin: 0;
}
highlight {
color: #127af1;
}
section.hero {
padding: 0 200px;
display: flex;
flex-direction: row;
margin-top: 50px;
flex-wrap: nowrap;
}
section.hero img.hero-img {
width: 400px;
height: 100%;
}
section.hero .hero-content {
display: flex;
flex-direction: column;
padding-right: 50px;
opacity: 0;
}
section.hero .hero-content img.hero-face-1 {
justify-items: self-end;
width: 75px;
}
section.hero .hero-content span.hero-google {
margin-top: 15px;
}
section.hero .hero-content h2.hero-title {
margin-top: 15px;
}
section.hero .hero-content p {
margin-top: 15px;
}
section.hero .hero-content .hero-buttons {
margin-top: 15px;
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
font-size: 14px;
}
button.full-blue {
all: unset;
background-color: #127af1;
color: white;
padding: 10px 16px;
margin: 0 20px;
border-radius: 8px;
transition: 0.3s;
}
button.full-blue:hover {
all: unset;
background-color: white;
color: #127af1;
padding: 10px 16px;
margin: 0 20px;
border-radius: 8px;
border-color: #127af1;
border: solid 1px;
transition: 0.3s;
}
button.empty-blue {
all: unset;
color: #127af1;
margin: 0 20px;
text-decoration: underline;
}
section.hero .hero-partners {
margin-top: 50px;
display: flex;
justify-content: space-around;
}
section.hero .hero-partners img {
width: 100px;
border-radius: 10px;
padding: 10px 16px;
box-shadow: 0px 42px 80px rgba(0, 0, 0, 0.03),
0px 27.2222px 46.8519px rgba(0, 0, 0, 0.0227778),
0px 16.1778px 25.4815px rgba(0, 0, 0, 0.0182222),
0px 8.4px 13px rgba(0, 0, 0, 0.015),
0px 3.42222px 6.51852px rgba(0, 0, 0, 0.0117778),
0px 0.777778px 3.14815px rgba(0, 0, 0, 0.00722222);
}
.slide-in{
animation: slide-in linear 1s;
animation-iteration-count: 1;
transform-origin: 50% 50%;
animation-fill-mode:forwards; /*when the spec is finished*/
-webkit-animation: slide-in linear 1s;
-webkit-animation-iteration-count: 1;
-webkit-transform-origin: 50% 50%;
-webkit-animation-fill-mode:forwards; /*Chrome 16+, Safari 4+*/
-moz-animation: slide-in linear 1s;
-moz-animation-iteration-count: 1;
-moz-transform-origin: 50% 50%;
-moz-animation-fill-mode:forwards; /*FF 5+*/
-o-animation: slide-in linear 1s;
-o-animation-iteration-count: 1;
-o-transform-origin: 50% 50%;
-o-animation-fill-mode:forwards; /*Not implemented yet*/
-ms-animation: slide-in linear 1s;
-ms-animation-iteration-count: 1;
-ms-transform-origin: 50% 50%;
-ms-animation-fill-mode:forwards; /*IE 10+*/
}
@keyframes slide-in{
0% {
opacity:0;
transform: translate(0px,58px) ;
}
100% {
opacity:1;
transform: translate(0px,0px) ;
}
}
@-moz-keyframes slide-in{
0% {
opacity:0;
-moz-transform: translate(0px,58px) ;
}
100% {
opacity:1;
-moz-transform: translate(0px,0px) ;
}
}
@-webkit-keyframes slide-in {
0% {
opacity:0;
-webkit-transform: translate(0px,58px) ;
}
100% {
opacity:1;
-webkit-transform: translate(0px,0px) ;
}
}
@-o-keyframes slide-in {
0% {
opacity:0;
-o-transform: translate(0px,58px) ;
}
100% {
opacity:1;
-o-transform: translate(0px,0px) ;
}
}
@-ms-keyframes slide-in {
0% {
opacity:0;
-ms-transform: translate(0px,58px) ;
}
100% {
opacity:1;
-ms-transform: translate(0px,0px) ;
}
}