-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
121 lines (121 loc) · 1.92 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
body {
font-size: 14px;
font-family: Helvetica, Tahoma, Arial, STXihei, "华文细黑", "Microsoft YaHei", "微软雅黑", SimSun, "宋体", Heiti, "黑体", sans-serif;
background: url('https://osu-translate-zh.github.io/osu-bp-query/static/bakemonogatari.jpg') no-repeat center center fixed;
background-size: cover;
}
#app {
display: flex;
min-height: 100vh;
flex-direction: column;
}
.page {
flex: 1 0 auto;
}
a {
color: #3b8bba;
text-decoration: none;
}
a:visited {
color: #265778;
}
.header {
width: 100%;
text-align: center;
margin: 4rem 0;
font-size: 3em;
color: #eee;
text-shadow: .1em .1em .1em #333;
}
.form-wrapper {
margin: 0 1em;
}
.form {
max-width: 30em;
padding: 1em 0;
margin: 2em auto;
background-color: rgba(46, 62, 73, .8);
border-radius: 5px;
}
.form label {
color: #eee;
text-transform: capitalize;
}
.form input {
margin: 0 auto;
}
#logo {
font-size: 1.2em;
}
#limit {
width: 3em;
}
.table-wrapper {
overflow-x: auto;
margin: 0 1em;
}
.table {
max-width: 100%;
margin: 1em auto;
background-color: rgba(255, 255, 255, .9);
color: #333;
}
.title {
min-width: 20em;
}
.download-button {
text-align: center;
margin: 1em 0 2em 0;
}
.center {
text-align: center;
}
.center>img {
height: 1em;
}
footer {
width: 100%;
text-align: center;
color: #eee;
background-color: rgba(46, 62, 73, .8);
}
.footer {
max-width: 50em;
line-height: 2rem;
margin: auto auto;
}
footer a {
color: #eee;
padding-left: 1.5em;
}
footer a:visited {
color: #eee;
}
@media screen and (max-width: 480px) {
#select,
#query {
margin: 0 auto;
display: block;
}
.form {
font-size: 1.5em;
}
.form label {
padding-left: 1em;
}
}
@media screen and (max-width: 568px) {
body {
font-size: 12px;
}
}
@media screen and (min-width: 768px) {
body {
font-size: 16px;
}
}
@media screen and (min-width: 1024px) {
body {
font-size: 18px;
}
}