-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathui.css
More file actions
117 lines (99 loc) · 1.95 KB
/
ui.css
File metadata and controls
117 lines (99 loc) · 1.95 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
115
116
/*
This is the css for the user web page.
It is used to define stylings to make the web page look nicer.
The major thing it does is make the web page "night mode" so that it is a black background with white text.
*/
:root { /*default background and text colors*/
--bg: #303030;
--text: #F0F0F0;
}
.test {
color: #FF0000;
}
.selected {
background-color: var(--text)!important;
color: var(--bg)!important;
}
.addresscontainer {
margin-bottom: 1%;
}
.actioncontainer {
margin-bottom: 1%;
}
.btn-group {
margin-bottom: 1%;
}
body {
background-color: var(--bg);
color: var(--text);
}
.form-control {
background-color: #495057!important;
color: var(--text)!important;
}
.table {
color: var(--text);
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
color: var(--text)!important;
opacity: .75!important;
}
.dropdown-menu {
background-color: #495057!important;
color: var(--text)!important;
}
.btn {
background-color: #495057;
color: var(--text);
}
.passwordVal {
margin-top: 1%;
}
.submitPassword {
margin-top: 1%;
}
tr:hover > td {
color: #f0ead6;
}
tr:hover > th {
color: #f0ead6;
}
*{
margin: 0;
padding: 0;
}
.rate {
float: left;
height: 46px;
padding: 0 10px;
}
.rate:not(:checked) > input {
position:absolute;
top:-9999px;
}
.rate:not(:checked) > label {
float:right;
width:1em;
overflow:hidden;
white-space:nowrap;
cursor:pointer;
font-size:30px;
color:#ccc;
}
.rate:not(:checked) > label:before {
content: '★ ';
}
.rate > input:checked ~ label {
color: #ffc700;
}
.rate:not(:checked) > label:hover,
.rate:not(:checked) > label:hover ~ label {
color: #deb217;
}
.rate > input:checked + label:hover,
.rate > input:checked + label:hover ~ label,
.rate > input:checked ~ label:hover,
.rate > input:checked ~ label:hover ~ label,
.rate > label:hover ~ input:checked ~ label {
color: #c59b08;
}