-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
81 lines (68 loc) · 1.32 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
81
body {
font-family: 'Lato', sans-serif;
margin: auto;
max-width: 50rem;
color: white;
background: linear-gradient(90deg, #0074D9 25%, #FF4136 75%);
font-size: 1.2em;
}
#header {
text-align: center;
margin-bottom: 1em;
}
#grid-wrapper {
display: grid;
grid-template-columns: [bluebets] 1fr [bluesummary] 1.5fr [menu] 1fr [redsummary] 1.5fr [redbets] 1fr;
padding: 0.5em;
}
#menu-column {
grid-column: menu;
text-align: center;
}
.bet-count {
font-size: 0.95em;
padding: 0.2em;
}
.individual-bets {
font-size: 0.95em;
}
.sum {
font-size: 2.2em;
}
.blue {
text-align: left;
}
.red {
text-align: right;
}
#grid-blue-bet-list {
grid-column: bluebets;
}
#grid-blue-bet-summary {
grid-column: bluesummary;
}
#grid-red-bet-summary {
grid-column: redsummary;
}
#grid-red-bet-list {
grid-column: redbets;
}
#reset-bets {
padding-top: 3.5rem;
}
button {
background: rgba(0, 0, 0, 0.25);
border: none;
border-radius: 10px;
padding: 8px;
color: white;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
cursor: pointer;
}
a {
background: rgba(0, 0, 0, 0.25);
border-radius: 10px;
padding: 8px;
color: white;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
}