-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (66 loc) · 1.05 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
html {
font-family: monospace;
}
body {
height: 100vh;
width: 100vw;
margin: 0;
display: flex;
justify-content: space-around;
align-items: center;
}
#calculator {
display: flex;
flex-direction: column;
align-items: stretch;
gap: 10px;
background-color: #555;
padding: 10px;
border: 2px solid black;
border-radius: 5px;
box-shadow: 5px 5px 5px grey;
}
#screen {
height: 100px;
background: #eee;
border: 2px solid #999;
font-size: 72px;
padding: 0 10px;
display: flex;
justify-content: flex-end;
align-items: center;
}
#logo {
text-align: right;
font-style: italic;
margin-right: 50px;
}
#controls {
display: flex;
flex-direction: column;
gap: 5px;
}
.button-row {
display: flex;
justify-content: space-between;
gap: 5px;
}
button {
height: 100px;
width: 100px;
font-size: 24px;
background-color: #e9e9ed;
}
.binaryOperators {
background-color: #cdc;
}
.clear {
background-color: #ccc;
color: blue;
}
.unaryOperators {
background-color: #ccd;
}
#equals {
background-color: #dcc;
}