-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
72 lines (59 loc) · 1021 Bytes
/
Copy pathstyles.css
File metadata and controls
72 lines (59 loc) · 1021 Bytes
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
* {
color: #454545;
}
body {
background-color: #EEEEEE;
padding: 15px;
}
table {
border-collapse: collapse; /* makes it so tr border bottom works */
}
th,td {
padding: 5px 15px;
}
.big-row {
margin-bottom: 10px;
border-style: solid;
border-width: 2px;
border-radius: 10px;
padding: 10px;
}
td:nth-child(odd), th:nth-child(odd) {
background-color: #d3dcdc;
}
td.blacked-out {
background-color: #6c6c6c;
color: #6c6c6c;
}
td.blacked-out:nth-child(odd) {
background-color: #5d5d5d;
color: #5d5d5d
}
td.got-wrong {
background-color: #644444;
color: #644444;
}
td.got-wrong:nth-child(odd) {
background-color: #533838;
color: #533838;
}
.btn-outline-dark {
margin-bottom: 5px;
width: 100%;
font-size: 15px;
padding: 0;
}
#flashcard {
border-style: solid;
border-width: 1px;
padding: 1rem;
margin-bottom: 1rem;
}
#study {
width: 100%;
display: flex;
justify-content: center;
}
tr {
border-bottom-width: 1px;
}