-
Notifications
You must be signed in to change notification settings - Fork 135
/
style.css
173 lines (141 loc) · 3.05 KB
/
style.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
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&subset=latin);
body {
font-family: 'Open Sans', sans-serif;
font-size: 13px;
text-align: center;
margin-top: 0;
margin-right: 0;
}
a {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
#list th, #skillList th {
cursor: pointer;
padding: 5px;
}
#list td, #list td:hover {
border-width: 0;
}
#list tr:hover td {
background: rgba(64, 46, 24, 0.1);
}
#skillList tr:hover td {
background: rgba(64, 46, 24, 0.1);
}
tr:hover td:first-child {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
tr:hover td:last-child {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
.pagination span {
cursor: pointer;
}
#content {
display: inline-block;
margin-top: 10px;
}
.infoTable, .infoTable th {
border-collapse: collapse;
text-align: center;
}
.infoTable, .recipesTable, #skillList {
margin: 0 auto;
}
.recipesTable {
text-align: left;
}
.recipesTable td, .recipesTable th {
padding-left: 5px;
padding-right: 5px;
}
.infoTable th, .infoTable td {
border: 1px solid black;
padding: 5px;
}
.caption {
margin-top: 10px;
margin-bottom: 10px;
}
#skillList {
text-align: left;
}
#skillList th, #skillList td {
padding-left: 10px;
padding-right: 10px;
}
@media screen and (min-width: 1080px) {
#skillList {
width: 80%;
}
}
.ui.sortable.table thead th:hover {
background: white !important;
}
.wk, .rs, .nu, .rp, .ab,
.Weak, .Resist, .Null, .Repel, .Absorb {
font-weight: bold;
}
.wk, .Weak { color: #db2828 !important; }
.rs, .Resist { color: #2185d0 !important; }
.nu, .Null { color: #b0b0b0 !important; }
.rp, .Repel { color: #fbbd08 !important; }
.ab, .Absorb { color: #21ba45 !important; }
.✓ { color: #31ce3e !important; }
.✘ { color: #db2828 !important; }
.left-border {
border-left: 1px solid rgba(34,36,38,.1) !important;
}
@media only screen and (max-width: 768px) {
.mobile-hidden {
display: none;
}
}
@media only screen and (min-width: 769px) {
.desktop-hidden {
display: none;
}
}
.warning-sign {
font-family: apple color emoji, segoe ui emoji, noto color emoji, android emoji, emojisymbols, emojione mozilla, twemoji mozilla, segoe ui symbol;
font-size: small;
}
.dlc-label {
background-color: #f0ad4e;
display: inline;
padding: .2em .6em .3em;
font-size: 75%;
font-weight: 700;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: .25em;
margin-left: 5px;
}
.persona-name {
vertical-align: inherit;
}
@supports (-webkit-overflow-scrolling: touch) {
.search-label,
select,
textarea,
input,
.ui.input input {
font-size: 16px;
}
.ui.button.clear-button {
padding: 1.4em 1.5em;
}
}
.search-container {
align-items: center;
justify-content: center;
max-width: 50%;
}