-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathnavbar_style.css
88 lines (75 loc) · 1.84 KB
/
navbar_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
87
88
@import url("fonts.css");
.nav-wrapper {
height: 53px;
background: #333;
}
/* Add a black background color to the top navigation */
.topnav {
background-color: #263238;
overflow: hidden;
height: 53px;
}
/* Style the links inside the navigation bar */
.topnav a {
float: left;
display: block;
color: #CFD8DC;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
font-family: Roboto-Bold;
}
/* Change the color of links on hover */
.topnav a:hover {
color: white;
border-bottom: thick solid #18FFFF;
}
/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
display: none;
}
/* Used to make the navbar sticky */
.navbar-fixed {
top: 0;
left: 0;
right: 0;
z-index: 1;
position: fixed;
}
/* When the screen is less than 855 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 855px) {
.topnav a:not(:first-child) {display: none;}
.topnav a.icon {
float: right;
display: block;
}
}
/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 855px) {
.topnav.responsive {
position: relative;
height: auto;
}
.navbar-fixed.responsive {
top: 0;
z-index: 100;
position: fixed;
width: 99.15%;
}
.topnav.responsive a.icon {
position: absolute;
right: 0;
top: 0;
}
.topnav.responsive a {
float: none;
display: block;
text-align: left;
}
.topnav.responsive a:hover {
background-color: #EEEEEE;
color: #212121;
border-bottom: none;
}
}