forked from ironhack-labs/lab-html-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
185 lines (172 loc) · 3.32 KB
/
Copy pathstyle.css
File metadata and controls
185 lines (172 loc) · 3.32 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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/* ANOTAÇÕES GERAIS SOBRE AS NECESSIDADES PARA O CSS DO PROJETO:
CRIAR CLASSE PARA CADA IMG (.img-npmlogo / .img-glass .img-hega)
CRIAR CLASSE PARA DIV DO FORM (div-form)
CRIAR CLASSE PRAR O BOTÃO SEARCH DO FORM (.btn-form)
CRIAR ID DA SECTION (#first-section)
CRIAR CLASSE PARA DIV DOS BOTÕES SEE PLANS E JOIN FOR FREE(div.btn)
CRIAR CLASSE PARA OS BOTÕES(EM LINK) (btn-see-plans / btn-for-free)
CRIAR ID DA SECTION (#second-section)
*CLASSE DA IMG AQUI (.img-glass)
CRIAR ID DA SECTION (#third-section)
CRIAR CLASS DA DIV (.container-third)
CRIAR CLASS PARA BOTÃO CREATE AN ORG (.btn-org)
CRIAR CLASS PARA IMG DA THIRD-SECTION (.img-third) */
@import url ( 'https://fonts.googleapis.com/css?family=Poppins' );
body {
font-family : 'Poppins' ;
text-align: center;
}
header > div {
padding: 0 25px;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid lightgray;
}
nav {
width: 600px;
}
nav ul {
list-style: none;
display: flex;
justify-content: space-between;
align-items: center;
}
nav a {
text-decoration: none;
color: black;
}
.blackHeart {
width: 20px;
margin-right: 1rem;
}
.img-npmlogo {
width: 50px;
height: 20px;
margin-left: 15px;
}
.img-glass {
width: 20px;
}
.img-hexa {
width: 20px;
margin-right: 1rem;
}
form {
display: flex;
}
.div-form {
padding: 5px;
margin-left: 0 auto;
}
.form-label {
color: rgba(0, 0, 0, 05);
}
.form-input {
color: rgba(0, 0, 0, 05);
}
.form-btn {
background-color: #fb3e44;
color: white;
border: none;
padding: 10px;
margin-left: 500px;
}
.btn-join {
border: none;
text-decoration: none;
padding: 10px;
margin: 20px;
text-align: center;
}
.btn-login {
border: none;
text-decoration: none;
padding: 10px;
margin: 20px;
text-align: center;
}
#first-section {
height: 600px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: rgba(232, 217, 217, 3);
}
#first-section h1 {
font-size: 5em;
}
.container-first {
display: flex;
flex-direction: row;
}
#first-section article {
width: 480px;
padding-bottom: 25px;
font-size: 22px;
text-align: center;
}
.see-plans {
background-color: #fb3b49;
color: white;
font-weight: bold;
box-shadow: 8px 8px 0 rgb(251, 59, 73, .2);
text-decoration: none;
padding: 15px 30px 15px 30px;
}
.join-for-free {
background-color: white;
color: black;
text-decoration: none;
font-weight: bold;
padding: 15px 20px 15px 20px;
margin-left: 25px;
}
.img-hexa {
display: block;
margin-left: auto;
margin-right: auto;
width: 350px;
}
#second-section {
height: 600px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin-top: 100px;
}
#second-section h2 {
font-size: 30px;
background-color: rgba(255, 204, 53, .4);
transform: skew(9deg,0deg);
font-style: italic;
}
#second-section article {
width: 860px;
padding-bottom: 25px;
font-size: 22px;
text-align: center;
}
#third-section {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
#third-section h3 {
color: #ed1c24;
}
.img-third {
width: 20px;
}
.btn-org {
background-color: black;
color: white;
box-shadow: 8px 8px 0 rgba(128, 83, 35, .2);
text-decoration: none;
padding: 10px;
letter-spacing: 2.5px;
font-weight: bold;
}