-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
128 lines (128 loc) · 2.02 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
button:hover,
hr,
select:hover {
background-color: #3e3e3e;
}
div.controls,
div.grid-container {
margin: 10px 0;
}
* {
font-family: Jetbrains Mono, monospace;
font-size: 12px;
}
body {
color: #e4e4e4;
overflow-y: scroll;
overflow-x: hidden;
margin: 10px;
}
hr {
border: 0;
height: 1px;
}
#log {
border: 1px solid #3e3e3e;
border-radius: 1px;
padding: 7px 10px;
}
p {
margin: 0;
padding: 3px 0;
word-break: break-all;
overflow-wrap: break-word;
}
::-webkit-scrollbar {
width: 0;
}
button,
input,
select {
background-color: #2e2e2e;
color: #e4e4e4;
border: 0 solid #3e3e3e;
border-radius: 2px;
padding: 5px;
box-sizing: border-box;
height: 26px;
}
button {
min-width: 26px;
padding-left: 10px;
padding-right: 10px;
}
input {
width: 100%;
}
button:active {
background-color: #4e4e4e;
}
input:placeholder-shown {
background-color: #3e3e3e;
}
input:disabled {
background-color: #282828;
}
div.controls {
display: flex;
gap: 5px;
}
div.grid-container,
div.video-source,
div.video-source-inputs {
display: flex;
flex-grow: 1;
gap: 5px;
}
div.video-source-input {
display: flex;
flex-direction: column;
width: 100%;
}
div.grid-layout {
border: 1px solid #3e3e3e;
border-radius: 1px;
display: grid;
width: 100%;
grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
padding: 10px;
gap: 5px;
}
div.video-source {
flex-direction: column;
align-items: center;
}
div.video-source-inputs {
flex-direction: column;
width: 100%;
}
.row {
display: flex;
align-items: center;
gap: 5px;
}
.select-box {
display: flex;
flex-direction: column;
min-width: 130px;
}
div.hidden {
display: none;
}
input.cache-checkbox {
width: 12px;
height: 12px;
margin: 0 5px;
}
input.error {
background-color: #5e2e2e;
}
input.error::placeholder {
color: #aaa;
}
div.row-spaced {
justify-content: space-between;
}
p.counter {
padding: 0;
}