-
Notifications
You must be signed in to change notification settings - Fork 0
/
navbar.css
55 lines (49 loc) · 900 Bytes
/
navbar.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
body{
background: url("images/back.jpg") no-repeat center center fixed;
background-size: cover;
}
.menu{
background-color: rgba(0,0,0,0.6);
overflow: hidden;
}
.menu ul{
padding-top: 2%;
padding-bottom: 2%;
}
.menu a{
color: goldenrod;
font-size: 1.15em;
}
.navbar .nav li a:hover{
background-color: transparent;
color:white;
font-weight: bold;
}
.navbar .nav li a:active{
background-color: transparent;
color:white;
font-weight: bold;
}
.navbar-brand img{
padding-top:0;
padding-bottom: 0;
margin-bottom: 1%;
width:5em;
height: 5em;
}
.social{
margin-top:5%;
list-style-type: none;
border-top: 0.15em dashed white;
border-bottom: 0.15em dashed white;
padding: 2%;
text-align: center;
}
.social li{
display: inline;
padding-left: 4%;
}
.social img{
width:22px;
height: 22px;
}