-
Notifications
You must be signed in to change notification settings - Fork 38
/
base.css
97 lines (83 loc) · 1.36 KB
/
base.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
* {
transition: all .2s;
font-family: 'Roboto Mono', '思源黑体', sans-serif;
}
body {
padding: 20px 30px 40px;
background: #EEE;
max-width: 700px;
margin: 0 auto;
color: #333333;
}
small.label {
display: block;
font-weight: bold;
color: #aaa;
}
.button {
cursor: pointer;
background: #333;
padding: 12px;
color: #EEE;
display: inline-block;
border-radius: 10px;
font-size: 14px;
}
.clickable {
cursor: pointer;
}
.clickable:hover {
opacity: 0.6;
}
input:hover {
opacity: 0.8;
}
input[type="text"] {
font-size: 20px;
margin: 10px 0 20px;
padding: 5px;
}
input[type="radio"] {
font-size: 20px;
margin: 10px 0 20px;
padding: 5px;
}
h1 {
font-size: 40px;
}
#text {
padding: 10px 20px;
background: #f6f6f6;
box-shadow: 0 10px 30px 0 rgba(0,0,0,0.05);
margin-bottom: 20px;
min-height: 200px;
font-size: 14px;
line-height: 1.5;
color: #333;
}
.slogan {
opacity: 0.1;
display: block;
max-width: 300px;
margin: 10px auto;
}
.about {
font-size: 10px;
display: block;
margin: 0 auto 5px;
text-align: center;
opacity: 0.2;
}
.actions {
margin-bottom: 20px;
display: flex;
align-items: center;
}
.shuffle {
margin-left: 10px;
height: 30px;
}
select {
margin: 10px 0 20px;
padding: 5px;
}