-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyles.css
More file actions
68 lines (60 loc) · 1.07 KB
/
Copy pathstyles.css
File metadata and controls
68 lines (60 loc) · 1.07 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
text-align: center;
background: #183843;
}
.container {
width: 300px;
color: #fff;
padding: 0 20px;
}
h1 {
color: #e96c4c;
}
h2 {
margin-top: 20px;
}
.input-group {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 10px;
padding: 0 20px;
}
#number-input {
width: 80px;
height: 50px;
text-align: center;
border-radius: 6px;
border: 1px solid #245364;
background: transparent;
color: #fff;
outline: none;
font-size: 30px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
button {
cursor: pointer;
width: 60px;
height: 40px;
font-size: 30px;
cursor: pointer;
background: transparent;
color: #fff;
border: 1px solid #245364;
border-radius: 6px;
}
#submit {
margin-top: 20px;
width: calc(100% - 40px);
height: 50px;
font-size: 20px;
font-weight: bold;
color: #e96c4c;
}