forked from thisleaf/thisleaf.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
kancolle_c.css
113 lines (91 loc) · 1.31 KB
/
kancolle_c.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
:root {
--graycolor: #aaa;
}
h1.little_header {
font-size: 100%;
}
h2 {
font-size: 120%;
}
p {
margin-left: 1em;
}
hr {
border-width: 0px 0px 1px 0px;
}
div.index {
line-height: 1.2;
font-size: 80%;
}
div.index a {
color: blue;
}
/* テーブル汎用 */
table.black_border {
border-collapse: collapse;
border: 1px solid black;
margin: 5px;
text-align: center;
}
table.black_border.around2 {
border-width: 2px;
}
table.black_border td
, table.black_border th
{
border: 1px solid black;
}
table.center {
margin-left: auto;
margin-right: auto;
}
/* 艦娘基礎ステータス逆算 */
#basestatus_div .basestatus {
display: inline-table;
margin-right: 1em;
}
#basestatus_div input[type="number"] {
width: 3.5em;
text-align: right;
}
#basestatus_div td {
padding: 1px 2px;
}
#basestatus_div .inlevel,
#basestatus_div .invalue,
#basestatus_div .outlevel,
#basestatus_div .outvalue
{
white-space: nowrap;
width: 5em;
}
#basestatus_div input {
color: gray;
}
#basestatus_div input.accept {
color: black;
}
/* 家具コイン */
#furniture_table {
min-width: 550px;
}
input.fbox {
text-align: right;
width: 50px;
}
input.fcoin {
text-align: right;
width: 65px;
}
.fopen {
line-height: 1.1;
padding: 3px;
color: blue;
cursor: pointer;
}
.fopen.null {
color: black;
}
.fopen.over {
color: red;
}