-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
111 lines (92 loc) · 1.84 KB
/
style.css
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
body {
background-image: url(wallpaper.jpg);
background-size: cover;
display: flex;
direction: ltr;
justify-content: center;
margin: 50px;
margin-top: 200px;
}
.calculator-border {
text-align: center;
height: 500px;
width: 500px;
border: 1px solid;
border-color: black;
border-radius: 20px;
position: center;
background-color: rgb(70, 69, 69);
}
.calculator-screen-border {
background-color: rgb(105, 194, 105);
margin: 20px;
height: 60px;
border: 1px solid black ;
border-width: 1px;
border-radius: 5px;
}
.calculator-screen {
padding-right: 5px;
padding-left: 5px;
text-align: end;
margin: 5px;
height: 5px;
font-size: 38px;
font-variation-settings: 20px;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.buttons > button{
font-size: 27px;
padding: 15px;
width: 100px;
margin: 5px;
color: whitesmoke;
background-color: rgb(150, 150, 150);
}
.buttons > button:hover {
background-color: rgb(94, 94, 94);
}
#clear-screen {
width: 163px;
background-color: rgb(185, 90, 90);
}
#clear-screen:hover {
background-color: rgb(116, 56, 56);
}
#erase {
width: 150px;
}
#zero {
width: 214px;
}
#equals {
width: 214px;
background-color: rgb(36, 32, 32);
}
#equals:hover {
background-color: rgb(61, 59, 59);
}
#addition {
background-color: rgb(36, 32, 32);
}
#addition:hover {
background-color: rgb(61, 59, 59);
}
#substraction {
background-color: rgb(36, 32, 32);
}
#substraction:hover {
background-color: rgb(61, 59, 59);
}
#division {
background-color: rgb(36, 32, 32);
}
#division:hover {
background-color: rgb(61, 59, 59);
}
#multiplication {
background-color: rgb(36, 32, 32);
}
#multiplication:hover {
background-color: rgb(61, 59, 59);
}