-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
47 lines (47 loc) · 968 Bytes
/
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
body {
text-align: center;
padding: 10px 18%;
}
p {
user-select: none;
}
button {
margin: 8px 0;
padding: 4px 14px;
background-color: #F8F8F8;
border: 1px solid #888;
border-radius: 3px;
transition-duration: 0.3s;
transition-timing-function: ease;
cursor: pointer;
}
button:hover {
background-color: #DDD;
}
button:active {
background-color: #BBB;
}
#content {
width: 100% !important;
height: 200px;
font-family: "Microsoft Yahei", Helvetica, Arial, sans-serif;
}
input {
height: 20px;
margin: 2px 5px;
}
input, textarea {
border: 1px solid #888;
background-color: #FFF;
border-radius: 3px;
font-size: 16px;
transition: background-color 0.3s ease,
border-color 0.3s ease;
}
input:hover, textarea:hover {
background-color: #DDD;
}
input:focus, textarea:focus {
outline: none;
border: 1px solid #444;
}