-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
59 lines (48 loc) · 1.05 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
@tailwind base;
@tailwind components;
@tailwind utilities;
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');
html {
scroll-behavior: smooth;
}
body {
font-family: 'Poppins', sans-serif;
font-weight: 400;
font-style: normal;
background-color: #FFF;
}
.logo-font {
font-family: "Smooch", cursive;
font-weight: 500;
font-style: normal;
font-size: 2rem;
}
@media (max-width: 768px) {
.nav-toggle {
display: block !important;
}
.nav-items {
display: none;
flex-direction: column;
justify-content: center;
position: absolute;
text-align: center;
top: 5rem;
left: 0;
width: 100%;
background-color: #f9f9f9;
padding: 1rem;
height: calc(100vh - 89px);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.check-it {
display: none;
}
.nav-items li {
margin: 0 !important;
padding: 20px 10px;
}
.nav-items.show {
display: flex;
}
}