-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (63 loc) · 1.15 KB
/
style.css
File metadata and controls
64 lines (63 loc) · 1.15 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
}
body{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(6, 11, 39);
}
.calculator{
margin-top: 80px;
border: 2px solid none;
border-radius: 20px;
width: 400px;
padding: 20px 20px;
box-shadow: 0 0 25px #a80d0d, 0 0 50px #a80d0d, 0 0 100px #a80d0d, 0 0 280px #a80d0d;
}
#input{
color: #fff;
width: 310px;
padding: 10px;
margin: 10px;
background: none;
border: none;
border-bottom: 1px solid #eaeaff;
font-size: 65px;
text-align: right;
}
#input::placeholder{
color: #fff;
}
button{
width: 60px;
height: 60px;
margin: 10px;
border-radius: 30px;
color: #fff;
background-color: #000;
cursor: pointer;
font-weight: bold;
font-size: 20px;
}
button:hover{
background-color: #fff;
color: #000;
transition: 0.3s;
}
.operator{
color: #f67c14;
}
.operator:hover{
color: #fff;
background-color: #f67c14;
}
.equal{
color: #fff;
background-color: #f67c14;
}