-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
45 lines (45 loc) · 867 Bytes
/
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
#weekly-callout {
background-color: rgba(255,215,0,75%);
color: #fff;
margin-bottom: 1rem;
}
table {
counter-reset: rowNumber;
}
table tbody tr {
counter-increment: rowNumber;
}
table tr td:first-child::before {
content: counter(rowNumber);
}
input {
width: 380px;
max-width: 98%;
}
details {
padding: 10px 20px;
border-radius: 0.5rem;
background-color: rgba(27, 34, 54, 1);
text-align: left;
}
details[open] details[open] {
background-color: rgba(0,0,0,0.2);
padding: 10px 20px;
margin: -11px;
margin-bottom: 10px;
border: solid 1px rgba(255,215,0,0.8) !important;
}
details details,
details[open] details {
padding: 0;
margin: 0;
padding-left: 10px;
}
details[open] summary {
margin-bottom: 10px;
padding-bottom: 10px;
border-bottom: solid 1px;
}
details[open] details[open] summary {
color: rgba(255,215,0,0.8);
}