-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
97 lines (81 loc) · 1.45 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
* {
margin: 0;
padding: 0;
}
.navbar {
width: 250px;
height: 200vh;
background-color: #ffffff;
}
.main {
display: flex;
}
.sidebar {
width: 250px;
height: 40vh;
background-color: #ffffff;
position: fixed;
top: 200px;
overflow-y: scroll;
}
a {
color: black;
}
.sidebar a:hover .ic1 {
filter: invert(20%) sepia(100%) saturate(7495%) hue-rotate(335deg) brightness(102%) contrast(104%);
}
.sidebar .active .ic1 {
filter: invert(20%) sepia(100%) saturate(7495%) hue-rotate(335deg) brightness(102%) contrast(104%);
}
.sidebar a {
display: block;
padding: 16px;
text-decoration: none;
font-family: Arial, sans-serif;
margin-left: 20px;
position: relative;
}
.sidebar a:hover {
margin-top: 10px;
color: rgb(255, 0, 85);
background-color: rgb(251, 198, 216);
border-radius: 10px;
}
#profile {
height: 100px;
width: 100px;
position: fixed;
top: 70px;
left: 65px;
border-radius: 50%;
}
.active {
background-color: rgb(251, 198, 216);
color: rgb(255, 0, 85);
border-radius: 10px;
}
.sidebar .ic1 {
position: relative;
width: 25px;
height: 20px;
margin-right: 10px;
top: 5px;
}
::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-track {
background: #cccccc;
}
::-webkit-scrollbar-thumb {
background: rgb(223, 49, 107);
}
::-webkit-scrollbar-thumb:hover {
background: rgb(223, 49, 107);
}
.blank-page {
margin-left: 100px;
width: 100vw;
height: 110vw;
background-color: #f2f3f8;
}