header.css
444 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
/* Classes */
.header-bg{
background-color: green;
}
.header-div{
margin-top: 1%;
}
.logo{
height:100%;
}
.link{
text-decoration: none;
position: relative;
}
.link:after{
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0%;
border-bottom: 2px solid;
transition: 0.4s;
}
.link:hover:after{
width: 100%;
}
.notification-count{
background-color: #cc0000;
}
/* ID */
.notifications{
font-size: 20px;
}