-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
201 lines (168 loc) · 3.34 KB
/
styles.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
*{
margin: 0;
padding: 0;
}
.hero, footer{
background: #1F2937;
}
.hero-logo{
color: #F9FAF8;
font-size: 24px;
}
.main-text{
font-size: 48px;
font-weight: 800;
color: #F9FAF8;
}
.secondary-text{
color: #E5E7EB;
font-size: 18px;
}
.quote-text{
font-size: 36px;
font-weight: light;
font-style: italic;
color: #1F2937;
}
.hero, footer{
padding: 1em 13em;
}
/*---------------------Navigation--------------------------*/
.navigation{
display: flex;
justify-content: space-between;
align-items: baseline;
}
/*Taking out the bullets and set some gap between the links*/
ul{
list-style-type: none;
display: flex;
gap: 16px;
}
/*I don't want the links with a different color and with underline*/
ul a{
color: inherit;
text-decoration: none;
}
/*----------------------Hero Section-----------------------*/
.intro{
display: flex;
justify-content:center;
align-items:center;
padding: 5em 0;
gap: 4em;
}
/*Setting the flex direction vertically and setting some space between elements*/
.left{
display: flex;
flex-direction: column;
gap: 10px;
}
.right{
flex-shrink: 0;
width: 50%;
}
.image{
display: flex;
align-items: center;
justify-content: center;
background-color: gray;
height: 300px;
}
/*---------------------------------------------------------*/
main{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
/*-----------------------Random Info Section----------------*/
.random-info{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
padding:2em 0;
}
#information-header{
font-size: 36px;
font-weight: 800;
color: #1F2937;
}
.info-boxes{
display: flex;
align-items:center;
justify-content: center;
flex-wrap: wrap;
gap: 18px;
padding: 3em 0;
}
#box{
display: flex;
align-items: center;
justify-content: center;
height: 200px;
width: 200px;
border: 4px blue solid;
border-radius: 10%;
}
#box-wrap{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#box-wrap p{
padding-top: 5px;
}
/*-----------------Quote Section--------------------------*/
.quote-section{
display: flex;
justify-content: center;
flex-direction: column;
padding: 4em 13em;
background-color: #E5E7EB;
}
#author{
font-size: 20px;
font-weight: 900;
align-self:flex-end;
margin-right: 35px;
padding-top: 1em;
}
/*------------Sign Up Section..............................*/
.signup-section{
padding: 5em 13em;
}
.signup-box{
display: flex;
align-items: center;
justify-content: space-around;
color: #E5E7EB;
background-color: #3882F6;
border: 2px solid #3882F6;
border-radius: 20px;
width: 100%;
padding: 2em;
gap: 16em;
}
/*--------------Footer-------------------------------------*/
footer{
display: flex;
align-items: center;
justify-content: center;
}
/*--------------------------Button--------------------------*/
.signup-btn{
color: #E5E7EB;
background-color: #3882F6;
padding: 5px 10px;
border-radius: 7px;
width: 120px;
}
.signup-section .signup-btn{
border: 2px solid #E5E7EB;
}
.intro .left .signup-btn{
border: none;
}