-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (65 loc) · 1.16 KB
/
style.css
File metadata and controls
75 lines (65 loc) · 1.16 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
body {
font-family: Arial, sans-serif;
}
h1 {
text-align: center;
}
.container {
max-width: 400px;
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
input[type="number"] {
width: 100%;
padding: 8px;
margin: 5px 0;
box-sizing: border-box;
}
button {
width: 170px;
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
button:last-child{
margin-left: 5px;
}
#result {
display: none;
}
.result-digit {
width: 100%;
height: 150px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
font-weight: bold;
/* background: #ccc; */
margin-bottom: 10px;
}
.controls {
width: 100%;
display: flex;
justify-content: space-around;
}
.live-tag{
position: relative;
top: 0;
left: 270px;
background: red;
color: white;
height: 17px;
width: 30px;
padding: 1px 5px;
border-radius: 4px;
display: none;
}