-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (68 loc) · 1.22 KB
/
style.css
File metadata and controls
82 lines (68 loc) · 1.22 KB
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
73
74
75
76
77
78
79
80
81
82
body {
background-color:lightsalmon;
}
.app {
font-family: "calibri";
margin-left: 10%;
margin-right: 10%;
padding-left: 48px;
padding-right: 48px;
padding-top: 10px;
margin-top: 24px;
padding-bottom: 24px;
margin-bottom: 48px;
background-color: white;
border-radius: 12px;
}
summary {
font-size: 2em;
}
.details-section {
margin-top: 12px;
margin-bottom: 12px;
}
h1 {
margin-bottom: 0;
}
hr {
border: none;
height: 1.5px;
color: darkgray;
background-color: darkgray;
margin-top: 0;
}
table {
border: 2px solid lightgray;
border-collapse: collapse;
}
td + td,
th + th { border-left: 1px solid lightgray; }
tbody,
tr + tr { border-top: 1px solid lightgray; }
table th,
table td {
padding-left: 6px;
padding-right: 6px;
}
table tr th {
background-color: #fffeeb;
}
table tr:nth-child(even of :not([hidden])) td {
background-color: #fffeeb;
}
table tr:nth-child(odd of :not([hidden])) td {
background-color: #defeff;
}
#solve {
font-size: 1em;
padding-left: 1em;
padding-right: 1em;
padding-top: 0.25em;
padding-bottom: 0.25em;
}
#solver-results {
display: none;
}
#total-cost {
font-size: 1.5em;
}