-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (98 loc) · 1.67 KB
/
style.css
File metadata and controls
98 lines (98 loc) · 1.67 KB
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
98
*{
transition:0.3s;
font-family:sans-serif;
margin:0;
padding:0;
color:white;
}
body{
background-color:#191919;
}
.main{
margin-left:240px;margin-top:5px;
}
ul,ol{
margin-top:5px;
margin-left:30px;
}
li{
color:lightgray;
}
.sidebar-contain{
top:0;left:0;
position:fixed;
width:200px;
padding:10px;
height:100%;
background-color:#242424;
border-right:1px solid #3f3f3f;
}
.sidebar{
display:grid;
}
.sidebar .sidebar-head{
text-decoration:none;
font-size:1.5rem;
}
.sidebar .sidebar-sub{
text-decoration:none;
font-size:1.1rem;
color:gray;
padding-bottom:5px;
border-bottom:1px solid #4f4f4f;
margin-bottom:10px;
}
.sidebar-item{
padding-bottom:5px;
color:lightgray;
text-decoration:none;
margin-left:10px;
}
.highlight{
transition: 0.3s;
text-align: center;
}
.highlight:hover{
transform: scale(1.1);
}
.disable{
user-select:none;
cursor:not-allowed;
font-style:italic;
color: rgb(107, 105, 105);
}
.last-update{
user-select:none;
cursor:not-allowed;
font-style:italic;
color:gray;
}
.sidebar-footer{
position: fixed;
bottom:0;
}
.sidebar-hr{
border-bottom:1px solid #4f4f4f;
margin-top:5px;margin-bottom:5px;
}
.hr{
display:block;
margin-bottom:15px;
margin-right:10px;
border-bottom:1px solid #5f5f5f;
}
.code{
background-color: #3f3f3f;
margin:10px;
border-radius:5px;
padding:10px;
}
.betterButton{
background-color: rgba(0,0,0,0);
border: 1px solid rgb(152, 151, 151);
padding: 4px;
border-radius: 5px;
}
.betterButton:hover{
background-color: rgba(98, 97, 97, 0.637);
}