-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
159 lines (130 loc) · 2.26 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
* {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body {
margin: 0;
padding: 0;
}
header {
background-color: #1F2937;
margin: auto;
padding-bottom: 100px;
color: #E5E7EB;
}
.quote-block {
background-color: #E5E7EB;
padding: 100px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.quote {
max-width: 700px;
font-size: 36px;
font-style: italic;
}
#quote-credit {
margin-left: 400px;
font-weight: bolder;
font-size: 23px;
}
.signup {
background-color: #3882f6;
color: #E5E7EB;
border: 2px solid white;
}
.logo-text {
font-size: 24px;
color: #F9FAF8;
font-weight: bolder;
}
nav {
display: flex;
align-items: center;
padding-top: 15px;
margin: 0px 300px 100px;
}
nav a, .secondary-text {
font-size: 18px;
color: #E5E7EB;
}
a {
text-decoration: none;
}
.flex-container {
display: flex;
justify-content:center;
gap: 18px;
}
h1 {
font-size: 38px;
font-weight: bolder;
color: #F9FAF8;
}
.placeholder {
background-color: grey;
color: white;
padding:120px 50px 120px;
margin: 20px 0;
}
.hero-text {
max-width: 430px;
}
.links {
display: flex;
gap: 10px;
margin-left: auto;
}
button {
padding: 10px 30px;
border-radius: 5px;
color: #E5E7EB;
}
footer {
display: flex;
justify-content: center;
align-items: flex-end;
background-color: #1F2937;
padding: 40px
}
.boxes {
display:flex;
justify-content: center;
gap: 50px;
padding-bottom: 30px;
}
.box {
padding: 60px;
border: 5px solid#3882f6;
border-radius: 15px;
}
.random-information h2 {
text-align: center;
}
.box-text {
max-width: 100px;
text-align: center;
margin: auto;
}
.box-holder {
display: flex;
flex-direction: column;
justify-content: center;
}
footer p {
color: #E5E7EB;
}
.signup-block {
margin: auto 300px;
display: flex;
justify-content: space-around;
padding: 35px;
align-items: center;
border-radius: 12px;
margin: 30px 200px;
}
em {
font-weight: bolder;
font-size: large;
}