-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
216 lines (186 loc) · 3.99 KB
/
styles.css
File metadata and controls
216 lines (186 loc) · 3.99 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
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
/* -Font Calibri, Lucida Console, MS Reference Sans Serif- */
/* -Old World of Darkness colours are charcoal and light grey- */
/* -Old Mage: Purple and Gold- */
/* -New Mage Turquoise and Silver- */
/* -Old and New Vampire: Red and Black- */
/* -Old and New Werewolf: Brown and Bronze- */
/* -New Changeling: Emerald and Green- */
/* -Bastet: Gold and Turquoise- */
/* -Hunter: Black and Silver- */
/* -- */
/* -Consider Frames akin to the original paper sheets- */
/* -- */
/* - 720 min output- */
/* -- */
/* -- */
/* - 20180709 1840: define DIV tag and retest- */
/* - 20190119 2120: added borders to attributes and stats sections for ease of user reading */
html {
font-family: sans-serif;
font-size: 12pt;
}
body {
background-color: rgb(99, 99, 99);
}
h1, h2, h3,
p {
text-align: center;
}
li {
list-style: none;
}
ul {
padding: 0;
margin: 0;
}
li input {
padding: 0;
margin: 0;
display: block;
width: 100%;
}
li select {
padding: 0;
margin: 0;
display: block;
width: 100%;
}
input[type="radio"] {
display: inline-block;
width: auto;
}
input[type="checkbox"] {
display: inline-block;
width: auto;
}
select {
display: inline-block;
}
.attributes-wrapper, .abilities-wrapper,
.description {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
border-style: solid;
border-color: rgba(255, 255, 255, 0);
border-width: 1px;
border-radius: 4px;
padding: 1%;
background-color: rgba(255, 255, 255, 0.5);
}
.merit {
min-width: 265px;
margin: 0%;
justify-self: left;
border-style: solid;
border-color: rgba(255, 255, 255, 0);
border-width: 1px;
border-radius: 4px;
padding:1%;
background-color: rgba(255, 255, 255, 0.5);
}
.merit input[type='list'] {
flex-grow: inherit;
}
.aspect {
width: 31%;
min-width: 185px;
margin: 0%;
border-style: solid;
border-color: rgba(255, 255, 255, 0);
border-width: 1px;
border-radius: 4px;
padding:1%;
background-color: rgba(255, 255, 255, 0.5);
}
.health {
width: 10%;
min-width: 130px;
margin: 0%;
justify-self: right;
border-style: solid;
border-color: rgba(255, 255, 255, 0);
border-width: 1px;
border-radius: 4px;
padding:1%;
background-color: rgba(255, 255, 255, 0.5);
}
.advantages-wrapper {
display: flex;
justify-content: space-between;
align-items: stretch;
}
.statsBox {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.attributeName {
align-content: flex-start;
}
.attributeValue {
align-content: right;
}
.attributes, .abilities,
.description ul {
width: 30%;
margin: 0%;
border-style: solid;
border-color: rgba(255, 255, 255, 0);
border-width: 1px;
border-radius: 4px;
padding:1%;
background-color: rgba(255, 255, 255, 0.5);
}
.pageWideSectional {
margin: 8px;
border-style: solid;
border-color: rgba(255, 255, 255, 0);
border-width: 1px;
border-radius: 4px;
padding: 1%;
background: rgba(255, 255, 255, 0.5) url("/Images/TransparancyBackground/shattered-dark.png");
}
#meritList, #flawList {
max-width: fill-available;
}
.advantages {
width: 22%;
margin: 0;
}
.equipment {
width: 64%;
margin: 0;
border-style: solid;
border-color: rgba(255, 255, 255, 0.5);
border-width: 1px;
border-radius: 4px;
padding: 1%;
background-color: rgba(255, 255, 255, 0.5);
}
.lines {
border-bottom-style: solid;
border-color: rgba(166, 166, 166, 0.75);
border-width: 1px;
}
.icon {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
width: 15%;
margin: 0;
border-style: solid;
border-color: rgba(255, 255, 255, 0);
border-width: 1px;
border-radius: 4px;
padding: 1%;
background-color: rgba(255, 255, 255, 0.5);
}
.willpower, .health, .powerAspect, .powerSupply,
.humanity {
border: 1px;
text-align: center;
}
.inline {
display: inline-block;
}