-
Notifications
You must be signed in to change notification settings - Fork 6
/
style.css
50 lines (39 loc) · 1.04 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
/*-- scss:rules --*/
/* Table styles */
table {
width: 100%;
border-collapse: collapse; /* Ensures borders are clear and consistent */
}
/* Prevent wrapping in the first column of a table */
table td:nth-child(1),
table td:nth-child(2) {
white-space: nowrap;
}
th, td {
padding: 10px; /* Adds some padding for better readability */
border: 1px solid #ddd; /* Defines clear boundaries between columns */
text-align: left; /* Aligns text to the left */
}
tr:nth-child(even) {
background-color: #f9f9f9; /* Light grey background for even rows */
}
tr:nth-child(odd) {
background-color: #ffffff; /* White background for odd rows */
}
th {
background-color: #4CAF50; /* Green background for header row */
color: black; /* White text color for header row */
}
.quarto-title-meta-heading::before {
content: "Due Date";
}
.quarto-title-meta-heading {
visibility: hidden;
position: relative;
}
.quarto-title-meta-heading::before {
visibility: visible;
position: absolute;
left: 0;
top: 0;
}