-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
68 lines (60 loc) · 1.04 KB
/
index.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
body {
margin: 0;
-webkit-font-smoothing: antialiased;
font-family: 'Helvetica Neue', sans-serif;
}
main {
margin: 30px;
}
.hello {
text-align: center;
font-size: 40px;
margin-bottom: 21px;
height: 149px;
line-height: 149px;
border: 4px solid #707070;
background-color: #ffe8aa;
color: #707070;
}
.table {
display: flex;
overflow-x: auto;
padding: 21px 0;
border: 4px solid #707070;
background-color: #ffe8aa;
}
.column:first-child {
margin-left: 21px;
}
.row {
font-size: 40px;
font-weight: bold;
padding: 20px 38px 21px;
margin-right: 21px;
border: 2px solid #707070;
background-color: #fff5d9;
color: #f0dfae;
}
.row:first-child {
margin-bottom: 16px;
}
.foot {
position: fixed;
display: flex;
justify-content: center;
width: 100vw;
bottom: 37px;
left: 0;
}
.start {
box-sizing: border-box;
padding: 8px 0 8px;
width: 120px;
border-radius: 4px;
font-size: 20px;
font-weight: bold;
text-align: center;
background-color: #ffe8aa;
color: #707070;
border: 2px solid #707070;
}