forked from chinhodado/persona5_calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
127 lines (101 loc) · 2.14 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
@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; }
.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;
}
}