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
180 lines (149 loc) · 2.64 KB
/
style.css
File metadata and controls
180 lines (149 loc) · 2.64 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
@import url('https://fonts.googleapis.com/css?family=Poppins');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Poppins';
font-size: 16px;
}
header > div {
padding: 5px 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;
}
.search-bar{
justify-content: space-between;
padding: 5px 30px;
}
.search-bar .logo {
height: 20px;
}
.search-bar input {
width: 1200px;
background-color: rgba(0,0,0,0.1);
border: transparent;
height:30px;
padding-left: 10px;
}
.search-bar button {
border-style: none;
padding: 5px 20px;
color: white;
background-color: #fb3e44;
font-family: 'Poppins';
}
.search-bar a {
text-decoration: none;
color: black;
}
#join {
padding: 0 20px;
border: 1px solid rgba(0, 0, 0, 0.178);
}
.sec1 {
background-color: rgba(232,217,217,0.3);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 600px;
}
.sec1 h1 {
font-size: 4em;
font-weight: bolder;
}
.sec1 article {
width:25%;
text-align: center;
margin: 30px;
margin-bottom: 80px;
}
.botao a{
padding: 15px 45px;
justify-content: space-around;
text-decoration: none;
color: black;
font-weight: 900;
}
#plans {
background-color: #fb3b49;
color:white;
box-shadow: 8px 8px 0 rgba(251,59,73,.2);
}
.sec2 {
display:flex;
align-items: center;
flex-direction: column;
justify-content: center;
padding: 80px;
}
.sec2 img {
width: 15%;
margin-bottom: 30px;
}
.sec2 h3 {
background-color: rgba(250, 216, 104, 0.397);
padding: 2px 20px;
margin: 30px 0;
font-size: 2em;
}
.sec2 article {
width: 45%;
text-align: center;
}
.coluna {
display:flex;
padding: 20px 200px;
}
.sec3 {
height: 400px;
}
.sec3 img {
width: 10%;
align-items: baseline;
}
.coluna h4 {
color: #fb3b49;
font-weight: 900;
text-align: left;
padding: 10px 0;
}
.coluna p {
padding: 15px 0 30px 0;
}
.coluna div{
padding: 5px 30px;
}
#botao {
display: flex;
margin: auto;
justify-content: center;
text-decoration: none;
width: 20%;
background-color: black;
color:white;
font-weight: 300;
padding: 10px 90px;
box-shadow: 8px 8px 0 rgba(194, 193, 193, 0.548);
}