Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
DazaSeal
GitHub Repository: DazaSeal/Lunanom
Path: blob/master/public/apps/style.css
334 views
1
@import "../navbar.css";
2
3
body {
4
margin: 0;
5
font-family: Arial, Helvetica, sans-serif;
6
background-color: #262626;
7
}
8
9
@media screen and (max-width: 555px) {
10
nav a:not(:first-child) {display: none;}
11
nav a.icon {
12
float: right;
13
display: block;
14
}
15
}
16
17
@media screen and (max-width: 555px) {
18
nav.responsive {position: relative;}
19
nav.responsive .icon {
20
position: absolute;
21
right: 0;
22
top: 0;
23
}
24
nav.responsive a {
25
float: none;
26
display: block;
27
text-align: left;
28
}
29
}
30