-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
82 lines (79 loc) · 1.23 KB
/
styles.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
body {
background: black;
/*display: flex;*/
color: silver;
}
#screen {
margin: auto;
}
#messages {
margin-left: 0px;
margin-top: auto;
margin-bottom: auto;
padding-left: 0px;
padding-right: 30px;
padding-top: 0px;
font-family: Monospace;
font-size: 1.2em;
height: 95vh;
overflow-y: auto;
overflow-x: hidden;
}
#info {
position: absolute;
bottom: 2vh;
font-family: Monospace;
color: silver !important;
font-size: 1em !important;
}
#player {
margin-right: 0px;
margin-top: auto;
margin-bottom: auto;
padding-left: 2em;
font-family: Monospace;
height: 95vh;
}
#player p {
color: darkgoldenrod;
font-size: 1.2em;
}
#player span {
color: silver;
}
li {
list-style-type: none;
padding-left: 0px;
}
ul {
margin-top: 0px;
padding-left: 0px;
}
.status span {
color: darkred !important;
}
#title{
color: darkgoldenrod;
margin: auto;
font-size: 2em;
}
select, label, option{
margin: 5px;
}
input {
margin-top: 5px;
}
#nameWarning{
color: red;
}
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(252, 251, 241, 0.3);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(252, 251, 241 ,0.5);
}