-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtopbar.css
61 lines (57 loc) · 1.57 KB
/
topbar.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
/* Add a black background color to the top navigation */
.topnav {
overflow: hidden;
font-family: 'Roboto', sans-serif;
}
/* Style the links inside the navigation bar */
.topnav a{
float: left;
color:black;
text-align: center;
padding: 42px 16px;
display: block;
text-decoration: none;
font-size: 17px;
}
#title{
font-size: 30px;
padding: 29px 60px;
color:#84d4fd;
}
/* Change the color of links on hover */
.topnav a:link:hover {
background-color:white;
color:#84d4fd;
}
/* Add a color to the active/current link */
.topnav a:active {
background-color: white;
color:#84d4fd;
}
/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
color: black;
display: none;
}
/* When the screen is less than 600 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: 1500px) {
.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: 1500px) {
.topnav.responsive {position: relative;}
.topnav.responsive a.icon {
position: absolute;
right: 0;
top: 0;
}
.topnav.responsive a {
float: none;
display: block;
text-align: left;
}
}