This repository was archived by the owner on Feb 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.css
More file actions
114 lines (92 loc) · 1.63 KB
/
Copy pathIndex.css
File metadata and controls
114 lines (92 loc) · 1.63 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');
body {
background-image: url("imgs/background.png");
background-size: cover;
color: white !important;
}
li {
list-style: none;
padding-top: 15px;
}
img {
border-radius: 100%;
width: 55px;
}
a {
text-decoration: none !important;
color: #7289DA !important;
transition-duration: 500ms;
cursor: pointer;
}
a:hover {
color: #4E5D94 !important;
}
.comp {
margin-top: 1rem;
background-color: #36393f;
padding: 0.5rem;
min-height: 25rem;
padding-bottom: 3rem;
overflow-x: auto;
overflow-y: hidden;
}
.welcome {
text-align: center;
font-family: 'Noto Sans', sans-serif;
}
.rounded {
border-radius: 2rem;
}
.dropshadow {
box-shadow: 10px 10px rgba(1,1,1,0.3);
}
.OneMargin {
margin-top: 1rem;
}
.TwoMargin {
margin-top: 2rem;
}
.darker {
padding-top: 1rem;
background-color: #313339;
border-color: #31333921;
border-style: groove;
}
.mxo {
max-height: 25rem;
overflow-y: auto;
overflow-x: hidden;
}
.mxoa ::-webkit-scrollbar {
width: 10px;
}
.mxoa ::-webkit-scrollbar-track {
background-color: #313339 ;
}
.mxoa ::-webkit-scrollbar-thumb {
background-color: #2b2b2b;
border-radius: 1rem;
}
.mxoa ::-webkit-scrollbar-thumb:hover {
background-color: #272727;
}
.online {
color: green;
font-size: small;
}
.idle {
color: orange;
font-size: small;
}
.dnd {
color: red;
font-size: small;
}
.msinactive {
color: dimgray;
font-size: small;
}
.msactivity {
color: lightgrey;
font-size: small;
}