-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (72 loc) · 1.21 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
body {
margin: 0px;
font-family: "Baloo Chettan 2", cursive;
}
a {
text-decoration: none;
color: whitesmoke;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
background-color: grey;
padding: 0px 24px;
}
.navbar__menu li {
list-style: none;
padding: 8px 12px;
}
.navbar__menu li:hover {
background-color: teal;
border-radius: 12px;
}
.navbar__menu {
display: flex;
justify-content: space-between;
padding-left: 0px;
font-size: 24px;
}
.navbar__logo {
font-size: 25px;
color: whitesmoke;
}
.navbar__icons {
font-size: 24px;
padding-left: 0px;
display: flex;
}
.navbar__icons li {
list-style: none;
padding: 8px 8px;
}
.navbar__hamburger {
position: absolute;
right: 32px;
padding: 8px 24px;
font-size: 24px;
display: none;
}
@media screen and (max-width: 768px) {
.navbar {
flex-direction: column;
align-items: flex-start;
padding: 8px 24px;
}
.navbar__menu {
flex-direction: column;
align-items: center;
width: 100%;
}
.navbar__menu li {
width: 100%;
text-align: center;
}
.navbar__icons {
justify-content: center;
width: 100%;
}
.navbar__hamburger {
display: block;
}
}