-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (54 loc) · 941 Bytes
/
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
h1 {
text-align: center;
color: rgb(52, 45, 58);
}
.calculator {
width: 400px;
margin: 0 auto;
border: 5px solid rgb(61, 58, 58);
border-radius: 8px;
background-color: rgb(46, 43, 43);
padding: 8px;
}
.display, .display-last {
padding: 16px;
text-align: right;
background-color: rgb(172, 167, 177);
}
.display-large {
font-size: 3.5rem;
}
.display-last {
border-bottom: 1px solid black;
height: 52px;
font-size: 1rem;
}
.display {
margin-bottom: 8px;
}
.control {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 8px;
/* width: 400px; */
}
button {
padding: 32px;
border-radius: 8px;
border: none;
flex: 1;
width: 95px;
background-color: rgb(112, 82, 140);
color: white;
font-size: 1.5rem;
}
.operator {
background-color: rgb(82, 140, 118);
}
.reset, .sign, .percent, .decimal {
background-color: rgb(197, 117, 13);
}
#btn0 {
flex-basis: 166px;
}