-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stonetop.css
191 lines (153 loc) · 4.29 KB
/
stonetop.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/* Custom CSS */
:root {
--font-primary: Signika, sans-serif;
--stonetop-bg: hsl(30deg 20% 94%);
--color-border-highlight-alt: slategrey;
--color-shadow-highlight: slategrey;
--color-shadow-primary: slategrey;
--color-border-highlight: slategrey;
--color-ownership-none: slategrey;
--color-text-hyperlink: slategrey;
/* Playbook colors */
/* Todo: Darken to contrast with white */
--color-the-would-be-hero: hsl(350, 43%, 45%);
--color-the-fox: hsl(19, 95%, 64%);
--color-the-blessed: hsl(132, 34%, 56%);
--color-the-marshal: hsl(334, 29%, 37%);
--color-the-seeker: hsl(265, 33%, 25%);
--color-the-heavy: hsl(2, 83%, 24%);
--color-the-ranger: hsl(49, 51%, 34%);
--color-the-lightbearer: hsl(40, 94%, 49%);
--color-the-judge: hsl(244, 93%, 18%);
scrollbar-color: slategrey hsl(30deg 20% 94%);
}
/* Use default font */
body,
.vtt .window-header,
.vtt .window-app button,
.vtt .window-app .button {
font-family: var(--font-primary);
}
/* Strange Scene navigation bug fix */
#navigation {
overflow: visible;
}
/* Fix Pause Spinner Shadow */
#pause {
background: none;
}
#pause img {
--fa-animation-duration: 15s
}
#pause figcaption {
text-shadow: 3px 3px 4px var(--color-shadow-dark);
}
.vtt .sidebar-tab,
.pbta.sheet .cell__title,
.pbta {
font-family: Signika, sans-serif;
}
#navigation #scene-list .scene.gm {
border-color: slategrey;
background-color: hsl(308deg 6.5% 13%);
}
.vtt .window-header,
.pbta.sheet .sheet-attributes .cell--stats .stat {
background-color: slategrey;
}
.vtt :not(.application,.image-popout,.journal-sheet,.sidebar-popout) .window-content {
background: var(--stonetop-bg) url(/modules/stonetop/assets/graphics/sheet-bg.png);
background-position: center;
background-size: cover;
background-attachment: scroll;
scrollbar-width: none;
}
.app,
.window-app,
#controls ol.control-tools>li {
border-radius: 5px;
box-shadow: 2px 4px 8px 2px rgba(0, 0, 0, 0.4);
}
.vtt .dialog .window-content:has(.roll-dialog) .dialog-buttons {
display: grid;
grid-template-columns: repeat(3,1fr);
gap: 8px;
}
.vtt .dialog .window-content:has(.roll-dialog) .dialog-buttons .submit {
grid-column: span 3;
}
.pbta.sheet .sheet-tab {
margin-top: 0px;
}
/* .pbta.sheet .sheet-resources {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
margin-bottom: 8px;
} */
.pbta.sheet .sheet-resources .cell--roll-formula {
display: none;
}
.pbta.sheet .cell__clock {
display: grid;
grid-template-columns: repeat(10, 1fr);
column-gap: 10px;
}
.pbta.sheet .cell--Xp .cell__clock {
justify-self: unset;
}
.pbta.sheet input[type=radio].attr-xp {
width: 20px;
height: 20px;
margin: 2px 6px;
flex: none;
}
.pbta.sheet .sheet-wrapper .sheet-top .sheet-attributes-top .cell--attributes-top .cell.cell--attr-level {
flex: 0 1 auto;
}
.pbta.sheet .sheet-header__fields .view-playbook {
display: grid;
place-content: center;
}
.pbta.sheet .cell__counter>span {
font-weight: unset;
}
.pbta.sheet .sheet-attributes .cell--stats .stats-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
margin-left: 8px;
}
/* Playbook colors */
.pbta.sheet.actor .window-content {
padding: 0px
}
.pbta.sheet.actor .window-content form {
padding: 8px
}
.pbta.sheet.playbook-the-would-be-hero form {
background-color: color-mix(in hsl, var(--color-the-would-be-hero) 10%, transparent);
}
.pbta.sheet.playbook-the-fox form {
background-color: color-mix(in hsl, var(--color-the-fox) 10%, transparent);
}
.pbta.sheet.playbook-the-blessed form {
background-color: color-mix(in hsl, var(--color-the-blessed) 10%, transparent);
}
.pbta.sheet.playbook-the-marshal form {
background-color: color-mix(in hsl, var(--color-the-marshal) 10%, transparent);
}
.pbta.sheet.playbook-the-seeker form {
background-color: color-mix(in hsl, var(--color-the-seeker) 10%, transparent);
}
.pbta.sheet.playbook-the-heavy form {
background-color: color-mix(in hsl, var(--color-the-heavy) 10%, transparent);
}
.pbta.sheet.playbook-the-ranger form {
background-color: color-mix(in hsl, var(--color-the-ranger) 10%, transparent);
}
.pbta.sheet.playbook-the-lightbearer form {
background-color: color-mix(in hsl, var(--color-the-lightbearer) 10%, transparent);
}
.pbta.sheet.playbook-the-judge form {
background-color: color-mix(in hsl, var(--color-the-judge) 10%, transparent);
}
/* ~ Playbook colors */