-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
115 lines (86 loc) · 1.65 KB
/
app.css
File metadata and controls
115 lines (86 loc) · 1.65 KB
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
body {
font-family: "DejaVu Sans",Helvetica,Ariel,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ",Meiryo,"MS Gothic",'IPAゴシック',sans-serif;
font-size: 100%;
margin: 0;
padding: 0;
}
/* for newtab */
body#newtab {
font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HG明朝B, "MS Mincho", serif;
}
.vcenter {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
position: absolute;
}
#newtab #kakugen {
text-align: justify;
margin-left: 1.6em;
margin-right: 1em;
/* バランスを考えて、少し上に */
margin-top: -8vh;
/* 先頭の〝 との兼ね合いを調整 */
text-indent: -1.25em;
animation: fadein 2s ease-out;
}
#newtab #kakugen a {
text-decoration: none;
}
#newtab .small {
font-size: 2.0em;
line-height: 130%;
}
#newtab .ltl-small {
font-size: 5.5vh;
line-height: 170%;
}
#newtab .normal {
font-size: 8vh;
line-height: 150%;
}
#newtab .large {
font-size: 10vh;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
/* for popup.html */
body#popup {
min-width: 300px;
font-size: 0.85em;
margin: 8px;
}
#popup h1 {
font-size: 1.5em;
text-align: center;
margin-bottom: -0.2em;
}
#popup h2 {
margin-top: 1.5em;
font-size: 1.0em;
}
#popup .links li {
margin-left: 0.7em;
}
#popup .cloud {
padding-left: 1.2em;
}
#popup .cloud li {
display: inline-block;
margin-left: 0.7em;
}
#popup hr {
margin-top: 2.0em;
margin-left: 0.8em;
margin-right: 0.8em;
}
#popup .note {
color: darkgray;
font-size: 0.4em;
margin-left: 0.8em;
margin-right: 0.9em;
}