forked from Warren1001/IAS_Calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
78 lines (64 loc) · 1.01 KB
/
styles.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
71
72
73
74
75
76
77
78
:root {
color-scheme: dark light;
}
#calculator {
float: left;
min-width: 325px;
}
#tableContainer {
float: left;
}
h2 {
margin: 10px 0;
}
p {
margin: 5px 0;
margin-top: 0px;
word-break: normal;
white-space: normal;
}
.halfWindow {
max-width: 45%;
}
.tablesDesc {
max-width: 90%;
}
.hoverable {
color: #CC5500;
text-decoration: underline #CC5500;
}
table {
margin-left: auto;
margin-right: auto;
border: 2px solid;
text-align: center;
border-color: rgb(75, 75, 75);
min-width: 132px;
padding-top: 0px;
}
h4 {
padding-bottom: 0;
margin: 0;
word-break: normal;
white-space: normal;
width: 132px;
}
.headerDiv {
display: flex;
align-items: flex-end;
height: 37px;
}
.tableHeader {
float: left;
text-align: center;
}
th, td {
text-align: center;
border: 2px solid;
border-color: rgb(55, 55, 55);
min-width: 50px;
padding: 0px 2px;
}
input[type='number'] {
width: 40px;
}