-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathcommon.css
More file actions
116 lines (93 loc) · 1.53 KB
/
Copy pathcommon.css
File metadata and controls
116 lines (93 loc) · 1.53 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
.half-column {
min-width: 50%;
}
.third-column {
min-width: 33%;
}
.xs-width,
input[type=color] {
width: 50px;
}
.s-width {
width: 100px;
}
.ms-width {
width: 150px;
}
.m-width {
width: 200px;
}
.l-width {
width: 300px;
}
.xl-width {
width: 400px;
}
.xxl-width {
width: 500px;
}
.menu button, .menu input, .menu textarea, .menu select {
font-family: Roboto, sans-serif;
border-radius: 5px;
border: 2px solid #bbb;
padding: 3px 5px;
}
.menu button:hover {
background-color: #ddd;
}
.menu button:active, .tab-button.active {
background-color: #ccc;
}
.hidden {
display: none;
}
input[type=checkbox] {
width: 18px;
height: 18px;
}
#settingsSearch {
width: 85%;
}
.partial-export-option-wrapper {
display: flex;
flex-direction: column;
align-items: center;
}
.partial-export-option-wrapper label {
display: grid;
grid-template-columns: 200px 20px;
align-items: center;
text-align: center;
margin-bottom: 8px;
}
.hidden-file-input {
display: none;
}
.streamer-mode-wrapper {
position: relative;
display: inline-block;
}
.streamer-mode {
position: absolute;
inset: 0;
background-color: white;
transition: background-color 0.3s;
color: black;
border-radius: 6px;
display: none;
align-items: center;
justify-content: center;
z-index: 1
}
.streamer-mode:hover {
background-color: #eee;
}
.streamer-mode:active {
background-color: #ddd;
}
.obs-mode {
display: none;
}
#obsImportFile {
display: none;
}