-
Notifications
You must be signed in to change notification settings - Fork 1
/
tools.css
169 lines (155 loc) · 3.08 KB
/
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
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
body {
font-family: Helvetica, Arial, sans-serif;
font-size: 14px;
background-color: #6133B4;
color: #34313A;
}
#innerBody {
margin: 20px;
padding: 5px 20px 30px 20px;
background-color: #F6F4FC;
}
#loading {
margin-right: 30px;
margin-left: 30px;
color: orange;
font-size: 1.5em;
font-weight: bold;
}
#loading ul {
font-size: 0.8em;
}
#loading ul a {
color: orange;
}
#loading .details {
font-weight: normal;
font-size: 0.8em;
}
a {
color: #6133b4;
}
.narrowContent { /* The data should be as wide as the user's window */
max-width: 500px; /* but some explanatory paragraphs should be narrow. */
}
hr {
width: 95%;
}
hr.padded {
margin-top: 1em;
margin-bottom: 2em;
}
.show {
display: block;
}
.hide {
display: none;
}
.clear {
clear: both;
}
.subheading {
font-weight: bold;
}
.highlight {
font-weight: bold;
}
.lowlight { /* like highlight but less so */
font-style: italic;
}
.explanation {
font-style: italic;
}
.errorMessage {
color: orange;
font-size: 18px;
font-weight: bold;
}
abbr {
border-bottom: 1px dashed black;
}
img.emoji {
margin-bottom: -0.25em;
}
.forCopyPaste {
/* used to add blank lines that we want when copying text to clipboard,
but we don't want to see extra whitespace on the screen */
margin-top: -1em;
}
ul.padded > li {
padding: 3px 0;
}
p.taskName, p.taskNote {
margin-top: 0.1em;
margin-bottom: 0;
}
.gearList .item .stats {
font-variant: small-caps;
}
.gearList .item .key {
display: none;
}
.coloured {
display: inline-block;
width: 5.5em;
height: 3em;
padding-top: .7em;
}
.colourBlue { background-color: #a9dcf6; }
.colourTeal { background-color: #8eedf6; }
.colourGreen { background-color: #77f4c7; }
.colourYellow { background-color: #fedead; }
.colourOrange { background-color: #ffc8a7; }
.colourRed { background-color: #ffb6b8; }
.colourMaroon { background-color: #f19595; }
.neutral {
background-color: #fcf3e5; /* yellow */
}
.danger {
background-color: #F7EDED; /* red */
/* background-color: #F5A9A9; */ /* darker red */
}
.safe {
background-color: #EEF5F9; /* blue */
/* green+red and green+yellow are not good for colour-blind people */
}
h1 {
float: left;
}
h1>a:first-child { /* "Habitica" link in header */
color: black;
text-decoration: none;
}
h1>a:first-child:hover { /* "Habitica" link in header */
text-decoration: underline;
}
h1 span {
font-size: 0.5em;
}
h2 {
margin-top: 30px;
}
.mainSectionClose,
.showHideToggle, /* for toggling by id */
.showHideToggleClass /* for toggling by class */
{
cursor: pointer;
text-decoration: underline;
color: #925CF3;
}
.deemphasised {
color: black;
text-decoration-style: dotted;
text-decoration-color: blue;
}
.closer { /* as in "a thing that closes", not "nearer" */
margin-top: 30px;
padding-top: 15px;
padding-bottom: 15px;
}
.closer:hover {
border: 1px dashed lightgrey;
}
.developerData {
font-family: monospace;
}