forked from ironhack-labs/lab-html-exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
110 lines (86 loc) · 1.63 KB
/
style.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
@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;
}
/* display: flex; and justify-content: center;. */
.red-button {
text-decoration: none;
background-color: #fb3e44;
color: white;
}
.splash {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
height: 600px;
}
.triangle-hexagon {
height: 200px;
}
.hook {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
height: 600px;
.big-title {
font-size: 60px;
}
.splash a {
width: 60px;
}
.npm {
height: 25px;
}
.magnifying-glass {
height: 50px;
}
.perks{
display: flex;
justify-content: center;
flex-direction: row;
align-items: center;
}
.perks div {
border: 4px solid #fb3e44;
}
.perks img {
height: 50px;
}
.zero-configuration {
height: 50px;
}
.team-management {
height: 50px;
}
.familiar-features {
height: 50px;
}
.npm-audit {
height: 50px;
}