-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathstyles.css
More file actions
152 lines (125 loc) · 2.07 KB
/
styles.css
File metadata and controls
152 lines (125 loc) · 2.07 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
body {
/* Add bottom padding to allow scrolling past fixed bottom elements */
padding-bottom: 120px;
}
div.dropzone {
background-color: green;
}
div.dropzone-hidden {
display: none;
}
p.droptext {
text-align: center;
color: white;
background-color: inherit;
}
div.manual-dir-controls {
text-align: center;
margin-top: 10px;
margin-bottom: 10px;
}
button.game-dir-button {
padding: 8px 16px;
margin-right: 10px;
}
span.selected-dir {
font-size: 12px;
color: gray;
}
p.label {
text-align: right;
}
div.palette {
position: fixed;
bottom: 25px;
right: 30px;
z-index: 100;
border: 2px solid lightblue;
border-radius: 5px;
padding: 15px;
display: grid;
grid-auto-flow: column;
grid-gap: 10px;
}
div.backup-ui {
position: fixed;
top: 10px;
right: 10px;
z-index: 100;
background-color: white;
border: 2px solid lightblue;
border-radius: 5px;
padding: 10px;
}
div.backup-controls {
display: grid;
grid-auto-flow: column;
grid-gap: 10px;
align-items: center;
}
select.backup-select {
padding: 5px;
border: 1px solid lightgray;
border-radius: 3px;
background-color: white;
max-width: 200px;
font-size: 12px;
}
div.status {
position: fixed;
bottom: 0;
left: 0;
background-color: white;
}
div.extras {
padding-top: 5px;
}
button.palette-button {
}
.character-name {
text-align: center;
}
.section-header {
}
.expanded::before {
content: '\25BC';
padding-right: 10px;
padding-left: 0px;
}
.collapsed::before {
content: '\25B8';
padding-right: 10px;
padding-left: 0px;
}
div.content {
text-align: left;
display: grid;
}
div.section {
}
div.section-content {
display: grid;
grid-template-columns: repeat(auto-fit, 320px);
grid-row-gap: 5px;
}
div.section-hidden {
display: none;
}
div.character-content {
grid-template-columns: repeat(auto-fit, 175px);
grid-row-gap: 0px;
}
div.item {
display: grid;
grid-column-gap: 10px;
grid-template-columns: 150px 150px;
grid-auto-rows: 2em;
align-items: center;
}
div.character-item {
/* Override column sizes from item above */
grid-template-columns: 100px 75px;
}
input.value {
line-height: 2em;
}