-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNavBarStyle.css
36 lines (32 loc) · 903 Bytes
/
NavBarStyle.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
.topnav {
overflow: hidden;
background-color: darkblue;
}
.topnav a {
float: left;
display: block;
color: #00E9FF;
text-align: center;
padding: 6px 16px;
text-decoration: none;
}
.topnav a:hover {color: black; background-color:yellow
}
div.sticky {
position: -webkit-sticky;
position: sticky;
top: 0;
background-color:transparent;
border: 3px solid white;
padding: 5px;
font-size: 18px;
font-family:calibri;
animation: myfirst 10s 100000000;
}
@keyframes myfirst {
0% {background: red; left: 0px; top: 0px;}
25% {background: orange; left: 0px; top: 0px;}
50% {background: blue; left: 0px; top: 0px;}
75% {background: green; left: 0px; top: 0px;}
100% {background: red; left: 0px; top: 0px;}
}