-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
62 lines (54 loc) · 961 Bytes
/
styles.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
body {
padding: 24px;
display: flex;
justify-content: center;
font-family: Arial, Helvetica, sans-serif;
font-size: 48px;
}
#calculator {
display: flex;
flex-direction: column;
gap: 4px;
background-color: #708090;
padding: 20px;
border-radius: 8px;
border-right: 5px solid #000000;
border-bottom: 5px solid #000000;
}
#display {
background-color: #f5f5f5;
display: flex;
justify-content: end;
align-items: center;
height: 70px;
padding: 20px;
margin-bottom: 12px;
border-radius: 8px;
border-top: 2px solid #000000;
border-left: 2px solid #000000;
}
.row {
display: flex;
gap: 4px;
justify-content: space-between;
}
button {
font-size: 32px;
height: 100px;
width: 100px;
border-radius: 8px;
border-color: #708090;
}
#zero {
width: 204px;
}
.tertiary {
background-color: #00b4c5;
}
.secondary {
background-color: #00bf7d;
}
.primary {
background-color: #0073e6;
font-weight: bold;
}