-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (42 loc) · 765 Bytes
/
style.css
File metadata and controls
43 lines (42 loc) · 765 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
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px rgb(159, 255, 193);
border-radius: 10px;
background-color: #13633a;
}
::-webkit-scrollbar-thumb {
background: #a1ffce;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #4ec688;
}
body{
margin-bottom: 20px;
padding-bottom: 20px;
}
nav{
position:fixed;
left:0px;
top:0px;
height: 90px;
line-height: 80px;
background-image: linear-gradient(rgb(9, 57, 40),rgb(11, 103, 60));
width:100%;
color:rgb(255, 255, 255);
text-align:center;
}
area:hover{
background-color: rgb(166, 240, 229);
}
a{
color:rgb(255, 255, 255);
}
a:hover{
color:#a1ffce
}
#sub{
color:#cdcfce;
}