-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathmain.css
More file actions
44 lines (42 loc) · 846 Bytes
/
main.css
File metadata and controls
44 lines (42 loc) · 846 Bytes
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
body {
background-color: beige;
font-size: 20px;
font-weight: 400;
line-height: 1.4;
font-family: "Nanum Gothic", sans-serif;
}
.inner {
width: 1100px;
margin: 0 auto;
}
.btn {
padding: 6px 10px;
border: 1px solid #333;
border-radius: 4px;
color: #333;
font-size: 14px;
font-weight: 700;
text-align: center;
cursor: pointer;
box-sizing: border-box;
display: block;
transition: .4s;
}
.btn:hover {
background-color: #333;
color: #fff;
}
#app .inner .baseball-game .search {
display: flex;
gap: 3px;
}
h4, strong, h3 {
font-weight: 700;
}
#app .result .result-correct {
display: none;
background-color: beige;
}
#app .result .result-correct.block {
display: block;
}