forked from makersacademy/bowling-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (77 loc) · 1.55 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
body {
max-width: 700px;
margin: auto;
background-image: url('https://www.mytimeactive.co.uk/sites/default/files/inline-images/mytime-active-pavilion-november-2014%20%28738%29.jpg');
font-family: 'Permanent Marker', cursive;
font-size: 26px;
}
.title {
text-align: center;
margin-top: 45px;
}
.buttons {
margin-left: 75px;
}
button {
text-align: center;
border-radius: 2px;
margin-top: 20px;
margin-bottom: 50px;
background-color: #E54C4D;
width: 40px;
height: 26px;
font-family: 'Permanent Marker', cursive;
}
.notice {
text-align: center;
color: #d3313a;
}
.final-score {
text-align: center;
color: green;
padding-bottom: 10px;
font-family: 'Permanent Marker', cursive;
}
#playagain {
text-align: center;
font-family: 'Permanent Marker', cursive;
}
table.scorecard {
margin: 0 auto 40px;
width: 80%;
font-size: 12px;
border: 1px solid;
text-align: center;
table-layout: fixed;
font-family: 'Permanent Marker', cursive;
}
table.scorecard th,
tr,
td {
padding: 0;
vertical-align: middle;
font-family: 'Permanent Marker', cursive;
text-align: center;
}
table.scorecard th {
border-bottom: 1px solid;
background-color: #d3313a;
height: 30px;
color: #fff
}
table.scorecard th:not(:last-child) {
border-right: 1px solid;
}
table.scorecard td {
height: 30px;
background: rgba(255, 255, 255, 0.5);
}
table.scorecard tr td:not(:last-child) {
border-right: 1px solid;
}
table.scorecard tr:nth-child(2) td:nth-child(even) {
border-bottom: 1px solid;
}
table.scorecard tr:nth-child(2) td:last-child {
border-bottom: 1px solid;
}