-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (42 loc) · 794 Bytes
/
style.css
File metadata and controls
49 lines (42 loc) · 794 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
body
{
background-color: linen;
text-align: center;
}
input
{
text-align: center;
}
h1,h2,h3,h4,h5,h6
{
padding: 0px;
margin: 0px;
}
.small
{
width: 32px;
}
table
{
border: 1px solid black;
border-collapse: collapse;
}
tr
{
border-top: 1px solid black;
border-bottom: 1px solid black;
border-collapse: collapse;
}
/* This code block is from antonj's answer to https://stackoverflow.com/questions/3790935/can-i-hide-the-html5-number-input-s-spin-box */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
/* display: none; <- Crashes Chrome on hover */
-webkit-appearance: none;
margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
input[type=number]
{
-moz-appearance:textfield; /* Firefox */
}
/* This code block ends. */