-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
168 lines (159 loc) · 2.68 KB
/
style.css
File metadata and controls
168 lines (159 loc) · 2.68 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
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
body {
margin: 0px;
}
.header {
background-color: #1F2937;
display: flex;
justify-content: space-between;
padding-left: 150px;
padding-right: 150px;
}
.logo {
font-size: 24px;
color: #F9FAF8;
padding: 5px;
}
.header-links {
display: flex;
font-size: 18px;
color: #E5E7EB;
padding: 5px;
gap: 20px;
}
.body {
}
.body1 {
background-color: #1F2937;
display: flex;
justify-content: space-between;
gap: 30px;
padding: 100px 150px;
align-items: center;
}
.body1a {
width: 300px;
display: flex;
flex-direction: column;
gap: 5px;
justify-content: flex-start;
}
.title {
/* <to do> font? */
font-size: 48px;
font-weight: 800;
color: #E5E7EB;
}
.subtitle {
/* <to do> font? */
font-size: 18px;
color: #E5E7EB;
}
.body1b {
color: #E5E7EB;
background-color: gray;
height: 200px;
width: 400px;
display: flex;
justify-content:center;
align-items:center;
}
button {
background-color: #3882F6;
color: white;
padding: 6px 10px;
border-radius: 6px;
}
.body1a button {
width: 100px;
flex: 0;
}
.body2 {
display: flex;
flex-direction: column;
display: flex;
justify-content: center;
gap: 30px;
padding: 50px 200px 100px;
align-items: center;
}
.body2a {
/* <to do> font? */
font-size: 36px;
font-weight: 800;
color: #1F2937;
}
.body2b {
display: flex;
gap: 20px;
}
.illustration {
height: 100px;
width: 100px;
border-radius: 25px;
border: 4px solid #3882F6;
}
.pair {
display:flex;
flex-direction:column;
align-items: center;
}
.pair div {
text-align: center;
padding: 5px;
}
.body3 {
background-color: #E5E7EB;
display: flex;
flex-direction: column;
padding: 100px 110px 100px
}
.quote {
/* <to do> font? */
font-size: 36px;
font-weight: light;
font-style: italic;
color: #1F2937;
}
.author {
display:flex;
justify-content:flex-end;
font-weight:bold;
font-size: 24px;
padding-right: 40px;
}
.body4 {
display: flex;
background-color: #3882F6;
margin: 100px 150px;
height: 100px;
flex: 1;
border-radius:8px;
}
.body4a {
display: flex;
flex-direction:column;
padding: 10px 50px;
justify-content:center;
color: #F9FAF8;
}
.call {
font-weight: bold;
font-size: 24px;
}
.sign-up {
display: flex;
align-items: center;
justify-content: center;
}
.sign-up button {
border: 2px white solid;
font-weight: bold;
font-size: 16px;
padding: 6px 24px;
}
.footer {
background-color: #1F2937;
color: #E5E7EB;
text-align: center;
padding: 30px;
}