-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdfrpg-tools.css
134 lines (111 loc) · 2.43 KB
/
dfrpg-tools.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
/* CSS declarations go here */
@font-face {
font-family: MelroseModernRoboOne;
src: url("/MelroseModernOneSGOT.otf") format("opentype");
/* Exclude AINR from this font, and use style Two for them */
unicode-range: U+0-0040, U+0042-0048, U+004A-004D, U+004F-0051, U+0053-10FFFF
}
@font-face {
font-family: MelroseModernRoboTwo;
src: url("/MelroseModernTwoSGOT.otf") format("opentype");
/* Only use AINR from this version of Melrose Modern */
unicode-range: U+0041, U+0049, U+004E, U+0052
}
body {
font-family: "chaparral-pro", serif;
color: #003459;
}
p {
display: inline;
padding: 0;
}
.dfrpg-card {
float: left;
margin: 10px;
padding: 11px 14px;
width: 275px;
background-color: #BDD1EC;
border: 2px solid #00639f;
border-radius: 18px/16px 0;
-webkit-box-shadow: 4px 4px 0 0 rgba(0,122,194,1);
-moz-box-shadow: 4px 4px 0 0 rgba(0,122,194,1);
box-shadow: 4px 4px 0 0 rgba(0,122,194,1);
page-break-inside: avoid;
}
.dfrpg-aspect {
font-family: "gooddog-new", serif;
text-align: center;
font-size: 1.5em;
font-weight: bold;
border-radius: 18px/16px;
}
.dfrpg-card h3 {
color: #007AC2;
margin: 0 4px 8px;
text-transform: uppercase;
font-family: MelroseModernRoboOne, MelroseModernRoboTwo, serif;
letter-spacing: 0.02em;
font-size: 1.4em;
}
.dfrpg-card h4 {
color: #007AC2;
margin: 8px 0;
text-transform: uppercase;
font-family: MelroseModernRoboOne, MelroseModernRoboTwo, serif;
/*letter-spacing: 0.04em;*/
font-size: 1.10em;
}
.dfrpg-card ul {
list-style: none;
padding:0 0 0 1em;
margin:0;
}
.dfrpg-card .aspects {
padding-left: 1em;
text-indent: -1em;
}
.dfrpg-card .aspects .label {
font-weight: normal;
font-style: normal;
}
.dfrpg-card li {
margin-bottom: 6px;
}
.dfrpg-card ul.strong li {
font-weight: bold;
font-style: italic;
padding-left: 1em;
text-indent: -1.5em;
}
.dfrpg-card ul.strong li:before {
font-style: normal;
font-size: larger;
content: "▼ ";
color: #007ac2;
}
.dfrpg-card ul.medium li {
font-weight: bold;
font-style: italic;
padding-left: 1em;
}
.dfrpg-card ul.medium li:before {
font-style: normal;
font-size: larger;
color: #007ac2;
}
.dfrpg-card ul.short {
display: inline;
list-style: none;
}
.dfrpg-card ul.short li {
font-weight: bold;
font-style: italic;
color: #007ac2;
display: inline;
}
.dfrpg-card ul.short li:after {
content: ", ";
}
.dfrpg-card ul.short li:last-child:after {
content: "";
}