-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (39 loc) · 824 Bytes
/
Copy pathstyle.css
File metadata and controls
44 lines (39 loc) · 824 Bytes
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
#calculator_container {
display: flex;
flex-direction: column;
background-color: #e9dfd5;
width: fit-content;
padding: 20px;
align-items: center;
border-radius: 10px;
margin: 10px auto;
}
#display_area {
background-color: rgb(255, 255, 255);
height: 70px;
width: 100%;
margin-bottom: 15px;
border-radius: 5px;
padding: 5px;
align-items: center;
display: flex;
align-items: center;
font-size: 36px;
}
.calculator_row {
margin: 5px auto;
}
.calculator_row button {
width: 60px;
height: 60px;
font-size: 20px;
border-radius: 10px;
margin: 10px;
background-color: #ffbf00;
border-color: #ffbf00;
color: rgb(66, 64, 64);
}
.calculator_row button:hover {
background-color: #a77e02;
cursor: pointer;
}