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
105 lines (91 loc) · 1.63 KB
/
style.css
File metadata and controls
105 lines (91 loc) · 1.63 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
@import url('https://fonts.googleapis.com/css?family=Poppins');
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
}
/* Header */
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;
padding: 0;
}
nav a {
text-decoration: none;
color: black;
}
.blackHeart {
width: 20px;
margin-right: 1rem;
}
/* Section 1 */
#section1 {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 600px;
background-color: rgba(232,217,217,.3);
text-align: center;
}
#section1 h1 {
font-size: 2.5rem;
}
#section1 button {
background-color: #FB3B49;
box-shadow: 8px 8px 0 rgba(251,59,73,.2);
color: white;
border: none;
padding: 10px 20px;
margin: 10px;
cursor: pointer;
font-size: 1rem;
}
/* Section 2 */
#section2 {
display: flex;
justify-content: center;
align-items: center;
height: 400px;
flex-direction: column;
text-align: center;
}
#section2 h2 {
background-color: rgba(255,204,53,.4);
transform: skew(9deg,0deg);
font-style: italic;
padding: 10px;
}
/* Section 3 */
#section3 {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 50px;
}
#section3 h2 {
color: #ED1C24;
}
#section3 button {
background-color: #FB3B49;
box-shadow: 8px 8px 0 rgba(128,83,35,.2);
color: white;
border: none;
padding: 10px 20px;
cursor: pointer;
font-size: 1rem;
margin-top: 20px;
}