-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
85 lines (73 loc) · 1.41 KB
/
styles.css
File metadata and controls
85 lines (73 loc) · 1.41 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
83
84
85
* {
box-sizing: border-box;
}
html, body {
font-family: Arial, Helvetica, sans-serif;
font-size: 18px;
background: #f9f9f9;
color: #4a4a4a;
}
button, input {
font-size: 18px;
}
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 */
}
textarea, select, input[type] {
color: #4a4a4a;
padding: 6px 10px;
margin-bottom: 10px;
background-color: #f1f1f1;
border: 1px solid #f1f1f1;
border-radius: 4px;
box-shadow: none;
box-sizing: border-box;
/*max-width: 100%;*/
max-width: 100px;
}
button {
background: #f2f2f2;
color: #191919;
cursor: pointer;
display: inline;
margin-bottom: 18px;
margin-right: 7.2px;
padding: 6.525px 23.4px;
text-align: center;
border: 0;
border-radius: 3.6px;
}
button:hover {
background: #d9d9d9;
color: #000;
}
main {
max-width: 650px;
margin: 4rem auto;
margin-top: 4rem;
}
.numbers {
margin-bottom: 1rem;
}
.number {
display: inline-block;
font-size: 2rem;
padding: 0.3rem 0.8rem;
font-family: Consolas, Menlo, Monaco, monospace;
font-weight: bold;
}
#answer {
font-family: Consolas, Menlo, Monaco, monospace;
font-weight: bold;
display: inline;
margin-left: 1rem;
}
#config {
margin-top: 1rem;
}
#config input[type=number] {
width: 50px;
}