forked from nagadomi/waifu2x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
202 lines (179 loc) · 3.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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner
{
border: none;
}
input[type="checkbox"]:focus {
-moz-outline-offset: -1px !important;
-moz-outline: 1px solid #000 !important;
}
:focus {
outline: none;
} /*Remove a dotted line around 1) buttons, 2) checkboxes, 3) links*/
a {
text-decoration: none;
cursor: pointer;
color: inherit;
}
a:hover {
text-decoration: underline;
}
div, span, a, input {
background-repeat: no-repeat;
}
body {
width: 782px;
margin: 0 auto;
background: #ccc url(bg.png) no-repeat center bottom;
color: #000;
font-size: 14px;
font-family: Tahoma, Arial, Verdana, Meiryo, "MS Gothic", sans-serif, Lucida Sans;
line-height: 1.5em;
text-align: center;
}
.all-page {
position: relative;
width: 690px;
margin: 15px auto;
padding: 10px 30px 15px 30px;
background: #eee;
border: 2px solid #999;
border-radius: 8px;
text-align: left;
}
.all-page:after {
content: "";
position: absolute;
left: -1px;
top: -1px;
width: 100%;
height: 100%;
height: calc(100% - 2px);
padding: 0 1px;
box-shadow: 0px 5px 8px #bbb;
z-index: -1;
} /*for crop shadow bottom for 4px (2px from border and 2px from calc)*/
.main-title {
font-size: 2em;
font-weight: bold;
margin: 0.6em 0;
white-space: nowrap;
display: inline-block;
}
.choose-lang {
font-size: 0.8em;
margin: 0 5px;
opacity: 0.9;
vertical-align: middle;
}
p {
margin: 0.4em 0;
}
p.margin1 { margin: 0.9em 0; }
.links-box {
color: #999;
}
.example {
width: 445px;
height: 200px;
}
.blue-link {
color: #36b;
}
.gray-link {
color: #999;
}
.second-title {
font-size: 1.5em;
font-weight: bold;
margin: 1em 0 1em;
line-height: 1.3em;
}
.option-box {
margin: 1.5em 0;
white-space: nowrap;
}
.option-left {
display: inline-block;
width: 220px;
color: #707070;
font-weight: bold;
}
.option-left-small {
font-size: 0.8em;
line-height: 1.5em;
}
.option-right {
display: inline-block;
white-space: normal;
vertical-align: top;
}
.option-right-small {
margin-top: 2px;
font-size: 0.9em;
}
.option-hint {
margin: 0.5em 0;
color: #888;
font-size: 0.85em;
line-height: 1.5em;
white-space: normal;
}
#url {
width: 300px;
height: 23px;
padding: 0 3px;
border: 1px solid #b0b0b0;
}
label {
margin: 0 5px 0 0;
padding: 0;
cursor: pointer;
}
.radio {
margin: 0 4px 0 0;
padding: 0;
cursor: pointer;
vertical-align: middle;
}
.r-text {
vertical-align: middle;
}
.radio:checked + .r-text { color: #494; }
.button {
min-width: 160px;
height: 26px;
margin: 0 10px 3px 0;
padding-bottom: 1px;
background: #f2f2f2;
background-image: linear-gradient(to bottom, #f9f9f9, #dadada);
border: 1px solid #999;
border-radius: 1px;
cursor: pointer;
}
.button:hover:enabled {
background: #f7f7f7;
background-image: linear-gradient(to bottom, #fefefe, #e2e2e2);
}
.button:disabled {
background-image: none;
background-color: #ccc;
border-color: #ccc;
}
.bottom-hint {
margin: 0.85em 0;
color: #888;
font-size: 0.85em;
line-height: 1.5em;
}
.address {
text-align: center;
}
.tta_rule_text td {
padding: 4px;
border: 1px solid #ccc;
}