-
Notifications
You must be signed in to change notification settings - Fork 0
/
goaltracker.css
88 lines (87 loc) · 1.66 KB
/
goaltracker.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
82
83
84
85
86
87
88
html{
height:100%;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-image: url('progress.jpeg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height:100%;
}
h1 {
text-align: center;
}
table {
width: 80%;
margin: 20px auto;
border-collapse: collapse;
border: 2px solid #45adf2;
}
th, td {
padding: 8px;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
background-color: #45adf2;
color: white;
}
tr:nth-child(even) {
background-color: #f2f2f2;
}
tr:hover {
background-color: #ddd;
}
input[type="checkbox"] {
transform: scale(1.5);
}
.progress-container {
display: none;
margin: 20px auto;
width: 80%;
text-align: center;
color: #fff;
}
.progress-slider {
-webkit-appearance: none;
appearance: none;
width: 100%;
height: 15px;
border-radius: 5px;
background: #f2f2f2;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
margin-bottom: 10px;
}
.progress-slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 25px;
height: 25px;
border-radius: 50%;
background: #45adf2;
cursor: pointer;
}
.progress-slider::-moz-range-thumb {
width: 25px;
height: 25px;
border-radius: 50%;
background: #45adf2;
cursor: pointer;
}
#progressMessage {
margin-top: 20px;
font-size: 18px;
font-weight: bold;
}
.congrats {
display: block;
margin: 20px auto;
width: 200px;
height: auto;
}