-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (52 loc) · 987 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
:root {
--case: #3315B9;
--buttons: #F8F1D8;
--display: #F8F1D8;
--buttonsHover: #4525D8;
--operatorButtons: #FCCC20;
}
body {
font-family: monospace;
font-size: large;
font-weight: bold;
}
.container {
margin: 50px auto;
width: 300px;
padding: 20px;
display: flex;
flex-wrap: wrap;
align-content: flex-start;
gap: 14px;
border: 2px solid var(--case);
border-radius: 5px;
background-color: var(--case);
}
.display {
flex-basis: 100%;
height: 50px;
background-color: var(--display);
text-align: right;
font-size: xx-large;
}
.middle {
flex-basis: 100%;
display: flex;
gap: 5px;
flex-wrap: wrap;
}
button {
border: none;
padding: 15px 25px;
width: 71.25px;
background-color: var(--buttons);
}
button:hover {
background-color: var(--buttonsHover);
}
.operator, .equal {
background-color: var(--operatorButtons);
}
.clear {
width: 223.75px;
}