forked from manhaduy/manhaduy.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsive.css
More file actions
52 lines (43 loc) · 720 Bytes
/
Copy pathresponsive.css
File metadata and controls
52 lines (43 loc) · 720 Bytes
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
body {
margin: 0;
}
a, a:hover {
text-decoration: none;
}
.navbar {
font-family: "Helvetica Neue", Helvetica, sans-serif;
font-weight: 100;
font-size: 24px;
width: 100%;
background-color: #232323;
color: #efefef;
}
.navbar a {
color: #efefef;
}
.navbar-list {
list-style-type: none;
margin: 0;
padding: 0;
}
.navitem {
display: inline-block;
margin: 10px;
}
.right {
float: right;
}
@media(max-width: 500px) {
.navitem {
display: block;
}
.right {
float: none;
}
}
@media(max-width: 800px) {
.navbar {
font-size: 48px;
background-color: orangered;
}
}