forked from kageroh/cond_checker
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyle-yps.css
91 lines (86 loc) · 1.65 KB
/
style-yps.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
/* KanColle-YPS style sheets */
/* === yps panel classes === */
.yps-body {
white-space: pre-wrap;
position: absolute;
top: 75px; /* NaviBar 39px + margin 20px + spacer 16px */
left: 1260px;
}
.yps-history {
background: silver;
}
.yps-navi {
white-space: nowrap;
top: 25px; /* NaviBar 39px + margin 20px - 9px - 25px */
}
.yps-cliptext {
position: fixed;
left: 100vw;
}
/* == ul === */
ul.markdown {
/* 箇条書き頭文字円盤. */
list-style: disc inside;
}
/* === table === */
table.markdown {
/* テーブル枠線なし. 行折り返しなし. */
border-collapse: collapse;
border: 0px;
white-space: nowrap;
}
table.markdown tr td {
/* table cellpadding 上下0px, 左右0.5文字, 上揃え. */
padding: 0px 0.5em;
vertical-align: top;
}
table.markdown tr th {
/* table cellpadding 上下0px, 左右0.5文字. 文字サイズ70%. */
padding: 0px 0.5em;
font-size: 70%;
}
/* === header classes === */
.markdownH3 {
margin: 1em 0px 0.3em 0px;
}
.markdownH4 {
margin: 0px 1em;
}
.markdownH5 {
margin: 0px 1em;
}
/* === details, summary === */
details.markdownDIV {
margin: 0.2em 0px 0.2em 0px;
}
details > ul.markdown {
margin-left: 1em;
}
summary.markdown > * {
display: inline;
}
summary.markdown {
margin-bottom: 0.2em;
}
summary.markdown:hover {
background: lightblue;
}
/* === tooltip classes === */
.toolmain .tooltip {
/* 通常時は非表示. */
display: none;
}
.toolmain:hover .tooltip {
/* hover時に枠付きで表示. */
display: inline;
font-weight: normal;
position: absolute;
margin-left: 1ex;
padding: 0.5ex;
border: 1px solid;
background: lightyellow;
}
.toolmain:hover {
/* hover時に太字. */
font-weight:bold;
}