-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
143 lines (121 loc) · 2.19 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
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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');
:root {
--primary-color: #3d3d3d;
--secondary-color: #636e72;
--font: 'Poppins', sans-serif
}
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
.btn {
padding: .6rem .8rem;
text-transform: uppercase;
font-family: var(--font);
background: var(--primary-color);
color: white;
font-size: 16px;
text-decoration: none;
outline: none;
border: 2px solid var(--primary-color);
transition: .3s;
cursor: pointer;
}
.btn:hover {
background: transparent;
}
body {
background: black;
font-family: var(--font);
}
nav {
position: fixed;
width: 100vw;
height: 60px;
border-top: .5rem solid var(--primary-color);
display: flex;
justify-content: space-between;
align-items: center;
z-index: 999999;
}
.logo {
display: flex;
justify-content: center;
align-items: center;
height: 55px;
width: 15%;
font-weight: 700;
background: var(--primary-color);
}
.logo::before {
content: "NJ";
color: white;
}
.logo::after {
content: "Fitness";
color: black;
}
ul {
display: flex;
align-items: center;
height: 60px;
}
ul a {
text-decoration: none;
color: white;
margin: 0 2rem;
text-transform: uppercase;
font-family: var(--font);
font-weight: 700;
font-size: 16px;
}
ul li {
list-style: none;
}
ul a:hover {
color: var(--primary-color);
}
.banner {
background: url(images/bg.jpg);
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
height: 85vh;
}
.intro {
position: absolute;
top: 30%;
left: 10%;
color: white;
}
.intro h2,
p {
display: block;
width: 60%;
align-items: center;
}
.intro h2 {
text-transform: uppercase;
letter-spacing: 2px;
font-size: 30px;
}
.intro .btn {
margin-top: 2rem;
}
.row {
display: flex;
justify-content: center;
}
.card {
width: 33.3%;
height: 250px;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.card h2 {
text-transform: uppercase;
}