-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (76 loc) · 1.7 KB
/
style.css
File metadata and controls
84 lines (76 loc) · 1.7 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
/* White border for inputs inside course cards */
.course input[type="number"] {
border: 2px solid #fff;
background-color: #01162b;
color: #fff;
}
body {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
padding: 20px;
color: #01162b;
background-color: #d2dbeb;
}
.course {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
padding: 16px;
color: white;
text-align: center;
background-color: #01162b;
border-radius: 8px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bar {
height: 10px;
background: #6a90b4;
margin-bottom: 5px;
}
.controls {
display: flex;
gap: 6px;
margin-bottom: 10px;
align-items: center;
flex-wrap: wrap;
}
/* Grid for course cards */
#courses {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 20px;
}
#reset-message {
color: #01162b;
font-weight: bold;
}
.timer-box {
border: 2px dashed #01162b;
padding: 10px;
margin-top: 20px;
}
button, input, select, option {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 16px;
padding: 10px;
border-radius: 5px;
border: none;
background-color: #01162b;
color: white;
cursor: pointer;
}
/* Make edit and undo buttons smaller and fit inside course card */
#edit, #undo {
padding: 6px 10px;
font-size: 14px;
min-width: 60px;
margin-left: 4px;
margin-right: 0;
margin-top: 0;
margin-bottom: 0;
}
button[onclick="addCourse()"] {
margin-bottom: 20px;
}
#edit, #undo {
background-color: #6a90b4;
color: #01162b
}