-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
118 lines (118 loc) · 2.07 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
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html, body, button, input, .img {
width: 100%;
height: 100%;
font-size: 14px;
font-family: sans-serif;
white-space: pre;
}
body {
overflow: hidden
}
body * {
position: absolute;
transform-origin: top left;
}
/*
html {
background-color: black;
}
html, body, button, input, .img{
color: white;
}
.CheckBox > label > input {
background-color: #25252a;
}
.LineEdit {
background-color: #2c2a32;
}
.LineEdit:disabled {
background-color: #2e2e2e;
}
.ItemList {
background-color: #2c2a32
}
.Panel {
background-color: #25252A
}
.Button {
background-color: #3b3943
}
.Button:disabled {
background-color: #3f3f3f
}
.OptionButton {
background-color: #3b3943
}
.OptionButton:disabled {
background-color: #3e3e3e
}
.TabContainer {
background-color: #3b3943;
}
*/
.Panel {
box-shadow: 0px 0px 16px 5px #DDDDDD
}
.HSeparator {
border-bottom: 1px solid white;
}
.TextureRect {
background-repeat: no-repeat;
}
.VBoxContainer, .HBoxContainer, .GridContainer {
display: flex;
flex-wrap: nowrap;
justify-content: flex-start;
align-items: stretch;
}
.GridContainer {
flex-wrap: wrap;
}
.VBoxContainer > *, .HBoxContainer > *, .GridContainer > * {
position: relative;
top: initial !important;
left: initial !important;
right: initial !important;
bottom: initial !important;
}
.HBoxContainer, .GridContainer {
flex-direction: row;
}
.HBoxContainer > * {
width: 0 !important;
height: 100% !important;
}
.GridContainer > * {
width: 0 !important;
height: 0 !important;
}
.VBoxContainer {
flex-direction: column;
}
.VBoxContainer > * {
width: 100% !important;
height: 0 !important;
}
.CheckBox > label {
position: static;
display: inline-block;
width: 100%;
height: 100%;
}
.CheckBox > label > input {
position: static;
width: 14px;
height: 100%;
vertical-align: middle;
margin: 0 5px;
}
.RichTextLabel {
white-space: break-spaces;
overflow-y: auto;
overflow-x: hidden;
}