-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (58 loc) · 1.17 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
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
body {
font-family: 'Lato';
background-color: #F2F2F2;
}
.content {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.sidebar {
width: 290px;
display: block;
background-color: #FFFFFF;
border-radius: 25px;
padding-bottom: 35px;
}
.sidebar__brand {
color: #1DA1F2;
font-size: 38px;
padding-left: 35px;
padding-top: 35px;
}
.sidebar__item {
display: flex;
text-decoration: none;
margin-top: 25px;
padding-right: 15px;
margin-left: 20px;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 10px;
padding-top: 10px
}
.sidebar__item:hover {
background-color: #519BDF33;
border-radius: 100px;
width: fit-content;
}
.sidebar__item:hover i,
.sidebar__item:hover span {
color: #1DA1F2 !important;
}
.sidebar__item__icon {
display: flex;
align-items: center;
color: #5B5C5E;
font-size: 28px !important;
}
.sidebar__item__text {
display: flex;
align-items: center;
color: #5B5C5E;
font-weight: bold;
padding-left: 25px;
font-size: 20px;
}