-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstyle.css
136 lines (122 loc) · 2.52 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
body {
margin: 0px;
font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
overflow: auto;
padding: 0px;
color: #444;
font-size: 16px;
line-height: 1.5em;
background-color: #eee;
}
.all {
background-color: #fff;
width: 70%;
margin: 30px auto;
padding: 50px 30px;
border-radius: 6px;
box-shadow:0px 2px 6px 0px #aaa;
}
a {
color: #444;
text-decoration: none;
border-bottom: 1px dashed #444;
}
a:hover{
color: #19e;
border-bottom: 1px dashed #19e;
}
h1 { font-size: 2.5em; text-align: center;}
hr {
border:none;
border-bottom: 1px solid #ccc;
margin: 20px;
}
#dat {
font-size: 1.2em;
border-radius: 15px;
padding: 3px 10px;
border: 2px solid #ccc;
outline: none;
}
#dat:focus{
border: 2px solid #7ce;
box-shadow: 0px 1px 2px 0px #7ce;
}
#xenkwan {
color: #fff;
background-color: #aaa;
border: none;
padding: 2px 10px;
border-radius: 20px;
}
#xenkwan:hover {
background-color: #7ce
}
.box{ float:left; padding:3px; width:70px; }
.outer {
overflow: hidden;
padding:10px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.outer:before,.outer:after { content: ""; display: table; }
.outer:after { clear: both; }
.kanzi { text-align: center; margin-bottom:10px; }
.kanzi rt {
font-size: 0.8em;
height: 22px;
}
.kanzi rb {
font-size: 2.5em;
font-family:"ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "MS P明朝", "MS PMincho", "MS 明朝", serif;
font-weight: bold;
}
.zihomlist { width:70px; text-align: center; }
.zihom { display:block; }
.radio { display: none; }
.zihomtext { font-size: 0.9em; }
.radio + .zihomtext {
padding: 0px 7px;
color: #999;
}
.radio:checked + .zihomtext {
color: #fff;
background-color: #7ce;
border-radius: 8px;
}
.checkbox { display:none; }
.checkbox_wrapper{
position:relative;
line-height: 1em;
}
.checkbox + span {
display: inline-block;
width:48px;
height:24px;
vertical-align: middle;
border-radius: 12px;
position:relative;
background-color: #ccc;
box-shadow: 2px 2px 2px rgba(0,0,0,0.2) inset;
transition: all 0.3s ease;
}
.checkbox:checked + span {
background-color: #7ce;
}
.checkbox + span::before {
content: "";
display: inline-block;
position: absolute;
left: 28px;
top: 4px;
width:16px;
height:16px;
background-color: #fff;
border-radius: 8px;
box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
transition: all 0.3s ease;
}
.checkbox:checked + span::before {
left: 4px;
}