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
52 lines (47 loc) · 896 Bytes
/
Copy pathstyle.css
File metadata and controls
52 lines (47 loc) · 896 Bytes
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
@import url('https://fonts.googleapis.com/css?family=Poppins');
body {
font-family: 'Poppins';
}
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;
}
section1 {
heigth: 600px;
background-color: rgba(232,217,217,.3);
button-background-color: #FB3B49;
button-box-shadow: 8px 8px 0 rgba(251,59,73,.2);
}
section2 {
background-color: rgba(255,204,53,.4);
transform: skew(9deg,0deg);
font-style: italic;
margin: 60px;
}
section3 {
h2-color: #ED1C24;
}
div a {
box-shadow: 8px 8px 0 rgba(128,83,35,.2);
text-color: white;
}