-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
87 lines (60 loc) · 1 KB
/
Copy pathstyle.css
File metadata and controls
87 lines (60 loc) · 1 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
body{
margin: 0;
font-family: arial,sans-serif;
}
header {
display: flex;
align-items: center;
justify-content: space-between;
background-color: #333;
color: rgba(221, 15, 15, 0.582);
padding: 10px 20px;
}
.logo{
font-size: 1.5rem;
}
#menu-toggle {
display: none;
}
.menu-icon{
display: flex;
flex-direction:column;
width: 30px;
cursor:pointer
}
.menu-icon span{
height: 3px;
background: rgba(224, 22, 22, 0.623);
margin: 4px 0;
border-radius: 2px;
}
nav {
background-color: #444;
display: none;
flex-direction: column;
}
nav a {
color:rgba(224, 22, 22, 0.623);
padding: 15px 20px;
text-decoration: none;
border-bottom: 1px solid #555;
}
nav a:houver{
background-color: #555;
}
#menu-toggle:checked+label+nav{
display: flex;
}
@media (min-width:768px){
.menu-icon{
display: none;
}
}
nav{
display: flex!important;
flex-direction: row;
background: none;
}
nav a{
border: none;
}