-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
139 lines (119 loc) · 1.8 KB
/
style.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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.container {
width: 100%;
height: 100%;
overflow: auto;
}
.ui-container {
position: absolute;
top: 0px;
left: 0px;
right: 0px;
width: 250px;
margin: 0px;
color: white;
background: #1a1a1a;
border-right: 2px solid #2FA1D6;
/* border-radius: 0px 0px 10px 0px; */
padding: 15px 15px 0px;
}
.ui-container p {
font-size: 10px;
}
.help {
margin: 15px 0px;
font-size: 10px;
}
.ui {
display: flex;
margin: 20px 0;
}
input,
button {
width: 100%;
padding: 5px;
margin: 0;
outline: none;
border: none;
background: #252525;
color: white;
border-left: 2px solid white;
transition: 0.4s;
}
button {
color: #252525;
cursor: pointer;
width: 30px;
height: 100%;
background: white;
border-left: 2px solid white;
}
.btn-normal {
font-size: 12px;
width: auto;
min-width: 25px;
margin-top: 5px;
}
.rembtn {
margin: 0;
}
button:hover {
background: #2FA1D6;
color: white;
}
label {
flex: 1;
position: relative;
}
label > p {
position: absolute;
font-size: 11px !important;
top: -20px;
}
.setrules {
position: relative;
left: 0px;
display: flex;
padding: 0;
margin: 5px 0px 5px 0px;
transition: 0.5s;
}
.setrules input:focus {
width: 250% !important;
transition: 0.4s;
}
.setrules input:nth-child(1) {
width: 35%;
}
.setrules input:nth-child(2) {
width: 100%;
}
#rules {
width: 100%;
margin-bottom: 15px;
}
ul {
font-size: 12px;
padding: 5px 10px 5px 15px;
}
.fade-remove {
position: relative;
left: -100%;
transition: 0.5s;
}
.info {
position: absolute;
bottom: 0px;
left: 0;
width: 100%;
padding: 5px;
background-color: #1a1a1a;
color: white;
pointer-events: none;
font-size: 14px;
}