-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (43 loc) · 879 Bytes
/
style.css
File metadata and controls
53 lines (43 loc) · 879 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
html {
box-sizing: border-box;
margin: 10px;
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 1.125rem;
line-height: 1.5;
}
.operators-table {
overflow-x: auto;
width: 100%;
}
table,
th,
td,
tr,
caption {
border: 1px solid;
border-collapse: collapse;
padding: 1rem;
}
table {
overflow-x: scroll;
margin-inline: auto;
width: 100%;
min-width: 500px
}
caption {
background-color: rgb(232, 215, 146);
font-size: 1.5rem;
font-weight: 700;
text-transform: uppercase;
}
th {
background-color: antiquewhite;
}
td {
background-color: rgb(175, 225, 175, 0.5);
}
tr:nth-of-type(2n) {
background-color: hsl(0 0% 0% /0.1);
}