-
Notifications
You must be signed in to change notification settings - Fork 34
/
navbar_electrothon.css
44 lines (44 loc) · 972 Bytes
/
navbar_electrothon.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
body,html{
overflow-x: hidden;
}
.navbar-light {
background-color: rgba(0,0,0,0.01);
border-color: rgba(0,0,0,0.0);
transition: .5s all;
transition-delay: .5s;
}
.navbar-light:hover {
/* background-color: rgba(96, 119, 187,0.7);*/
border-color: rgba(0,0,0,0.5);
transition-delay: 0s;
}
.navbar-brand{
margin: 0px 30px 0pc 10px;
}
.navbar-light .navbar-nav .nav-link {
color: black;
text-align: center;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: 400;
padding: 0 30px;
/* border: 2px solid red; */
/* margin: 10px 0px;*/
}
.navbar-light .navbar-nav .nav-link:hover {
position: relative;
color: black;
border-bottom: 2px solid #6077bb;
transition: border-bottom 0.3s;
}
.navbar.scrolled {
background: rgba(70,83,94,0.1);
transition: background 500ms;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
p,h1,h2,h3,h4,h5,h6{
cursor: default;
}