This repository has been archived by the owner on Apr 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbaseStyle.css
193 lines (159 loc) · 2.32 KB
/
baseStyle.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
192
193
body {
background: #333;
/* Old browsers */
background: -webkit-linear-gradient(top, #222 0%, #2a0022 100%);
/* Chrome10+,Safari5.1+ */
background: linear-gradient(to bottom, #222 0%, #2a0022 100%);
/* W3C */
font-family: Share Tech Mono, "Verdana", sans-serif;
color: green;
text-align: center;
}
div,
table,
tr,
td {
border: solid 1px green;
border-radius: 15px 0;
}
input {
background: none;
color: white;
font-size: 17px;
font-family: Share Tech Mono, "Verdana", sans-serif;
border: solid green;
padding: 5px;
text-align: center;
}
h1 {
border: double 15px green;
padding: 15px;
margin: 10px;
}
h2,
h3 {
margin-left: 20px;
}
strong {
color: yellow;
}
em {
color: red;
}
p,
td {
padding: 10px;
}
#priority,
#metatypechoice,
#magreschoice,
.incAtt,
.decAtt,
.knowButton,
.button {
cursor: pointer;
}
#priority-label td {
cursor: default;
}
#container {
width: 1200px;
margin: auto;
}
#racial {
min-height: 67px;
}
.magres,
h1,
h2,
h3,
#racial {
text-align: left;
}
.selected {
border-color: #0f0;
}
.deact,
.label {
background: #040;
color: #020;
border-color: #020;
cursor: default;
}
.deact strong,
.deact em {
color: #020;
}
.label {
color: lightgreen;
}
.container {
float: left;
margin: 15px 5px;
}
#characterPoints {
margin: 0;
padding-right: 11px;
position: absolute;
background: #222;
width: 1198px;
;
}
#characterPoints.fixed {
position: fixed;
top: 0;
}
h2#skillgroupHeader {
margin-top: 150px;
}
.points {
padding: 10px;
margin: 10px;
}
.skillsin {
width: 450px;
}
.skillName {
width: 250px;
}
#metatypeContain,
#magresContain {
margin-left: 0;
}
#specialContain,
#skillcontainer {
clear: both;
}
.hide {
display: none;
}
.active {
border-color: #0f0;
}
.spellname {
width: 200px;
}
.combat .spellname {
width: 140px;
}
.inventory {
padding: 0;
}
.ammoname {
width: 200px;
}
.dammod,
.grenadesdammod {
width: 170px;
}
#clothing input {
width: 110px;
}
.alert {
color: black;
background-color: red;
-webkit-transition: background-color 1s;
-moz-transition: background-color 1s;
-o-transition: background-color 1s;
transition: background-color 1s;
}