-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcustom.css
70 lines (60 loc) · 1.35 KB
/
custom.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
.tableFixHead {
overflow-y: auto;
/* make the table scrollable if height is more than 200 px */
height: 400px;
/* gives an initial height of 200px to the table */
}
.tableFixHead thead th {
position: sticky;
/* make the table heads sticky */
top: 0px;
/* table head will be placed from the top of the table and sticks to it */
background-color: #eeeeee;
}
table {
border-collapse: collapse;
/* make the table borders collapse to each other */
width: 100%;
}
th,
td {
padding: 0px 0px;
border: 0px solid #ccc;
}
thead {
background-image: linear-gradient(0deg, rgb(240, 236, 236, 1), rgb( 240, 236, 236, 1));
background-color: var(--bs-body-bg);
background-blend-mode: multiply;
}
.img-fluid {
max-width: 100%;
height: auto;
display: block;
margin: auto;
}
.myHighlighted {
background-color: rgb(135, 179, 154);
}
.myHighlightedCell {
background-color: rgb(135, 179, 154) !important;
}
.btn.btn-quarto, div.cell-output-display .btn-quarto {
color:#ccc
}
.top-button {
font-size: 15px;
border: none;
outline: none;
background-color: rgb(240,236,236);
color: rgb(135, 129, 221);
cursor: pointer;
padding: 15px;
border-radius: 4px;
text-decoration: none;
}
.top-button:hover {
background-color: rgb(189, 166, 166);
}
.monster {
width: 100%;
}