-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (60 loc) · 1.18 KB
/
style.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
62
63
64
65
66
67
68
69
70
*{
margin: 0;
padding: 0;
box-sizing: border-box;
list-style: none;
text-decoration: none;
font-family: serif;
}
body{
background-image:linear-gradient(rgba(104, 92, 92, 0),rgba(110, 88, 88, 0)),url(bg.jpg);
/* background-color: #f3f5f9; */
background-position: center;
background-size: cover;
background-repeat: no-repeat;
}
.wrapper{
display: flex;
position: relative;
margin-left: 91%;
}
.wrapper .sidebar{
width: 150px;
height: 100%;
background-color: transparent;
padding: 30px 0px;
position: fixed;
}
.wrapper .sidebar h2{
color:white;
text-transform: uppercase;
text-align: center;
margin-bottom: 30px;
font-size: 30px;
}
.wrapper .sidebar ul li{
padding: 15px;
border-bottom: 1px solid #bdb8d7;
border-bottom: 1px solid rgba(0,0,0,0.05);
border-top: 1px solid rgba(255,255,255,0.05);
font-size: 25px;
text-align: center;
}
.wrapper .sidebar ul li a{
color:white;
display: block;
margin-top: 25%;
}
.wrapper .sidebar ul li a .fas{
width: 25px;
}
.wrapper .sidebar ul li:hover{
background-color: #84c5df;
}
.wrapper .sidebar ul li:hover a{
color: #fff;
}
.img{
margin-left: 3%;
margin-top: 3%;
}