-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
64 lines (57 loc) · 1.06 KB
/
Copy pathindex.css
File metadata and controls
64 lines (57 loc) · 1.06 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
body,html {
box-shadow: none;
height: 100%;
}
body {
height: 100%;
margin: 0;
display: flex;
flex-direction: column;
}
.body {
background-color: rgb(39, 39, 39);
font-family: 'Courier New', Courier, monospace;
align-items: center;
}
.title {
color: rgb(228, 228, 228);
}
.input__number {
margin: 1rem auto;
background-color: rgb(10, 10, 10);
color: rgb(228, 228, 228);
height: 3rem;
width: 3rem;
border: 0;
text-align: center;
font-size: 1rem;
outline: none;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type=number] {
-moz-appearance: textfield;
}
.button {
background-color: greenyellow;
color: rgb(10, 10, 10);
height: 3rem;
width: 10rem;
margin: 1rem;
border: 0;
font-size: 1rem;
cursor: pointer;
}
.result {
color: rgb(228, 228, 228);
font-family: 'Courier New', Courier, monospace;
font-size: 2rem;
}
.error {
color: red
}