-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (108 loc) · 1.88 KB
/
Copy pathstyle.css
File metadata and controls
121 lines (108 loc) · 1.88 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
body {
background-color: #f26749;
font-family: 'Days One', sans-serif;
}
.stadium {
width: 100%;
}
.stadium .court {
width: 35%;
margin: 0 auto;
text-align: center;
}
h1 {
color: white;
text-align: center;
}
h2 {
color: #f4f4f4;
font-size: 18px;
font-weight: 400;
}
p{
text-align: center;
}
.board {
background: rgba(0, 0, 0, 0.9);
}
.board .points {
float: left;
width: 49.6%;
}
.board .games {
float: right;
width: 49.6%;
}
.board input {
width: 100%;
padding: 8px 0;
background: #bf4c33;
border: none;
outline: none;
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.9);
border-radius: 3px;
margin-bottom: 0;
font-size: 43px;
color: white;
text-align: center;
-webkit-transition: 0.9s ease-in-out;
-moz-transition: 0.9s ease-in-out;
-o-transition: 0.9s ease-in-out;
transition: 0.9s ease-in-out;
}
.total input {
width: 100%;
height: 80px;
padding: 8px 0;
background: white;
border: none;
outline: none;
box-shadow: 0 1px 0 rgba(0, 0, 0, 0.9);
border-radius: 3px;
margin-bottom: 0;
font-size: 43px;
color: #333333;
text-align: center;
-webkit-transition: 0.9s ease-in-out;
-moz-transition: 0.9s ease-in-out;
-o-transition: 0.9s ease-in-out;
transition: 0.9s ease-in-out;
}
form .games input:focus, form .points input:focus {
background: rgba(0, 0, 0, 0.4);
-webkit-transition: 1.1s ease-in-out;
-moz-transition: 1.1s ease-in-out;
-o-transition: 1.1s ease-in-out;
transition: 1.1s ease-in-out;
}
.low-risk {
background: green;
}
.medium-risk {
background: orange;
}
.high-risk {
background: red;
}
p.result{
width:50%;
text-align:center;
padding:1em 0;
margin:0 auto;
}
p.result.plus {
background:#59ec9e;
}
p.result.minus {
background:rgba(0, 0, 0, 0.4);
}
@media all and (max-width: 800px) {
.stadium {
width: 100%;
}
.stadium .court {
width: 95%;
margin: 0 auto;
text-align: center;
}
}