-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
80 lines (65 loc) · 1.06 KB
/
styles.css
File metadata and controls
80 lines (65 loc) · 1.06 KB
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
78
79
80
body {
display: flex;
justify-content: center;
}
#container {
display: flex;
flex-direction: column;
border: 2px black solid;
gap: 3px;
background-color: #D3D3D3;
}
.display {
border: 2px #373737 solid;
height: 40px;
display: flex;
justify-content: flex-end;
align-items: flex-end;
}
.row {
display: flex;
gap: 4px;
}
.row4 {
display: flex;
justify-content: space-between;
}
.key {
border: 2px #373737 solid;
height: 20px;
width: 20px;
display: flex;
justify-content: center;
align-items: center;
font-family: monospace;
}
.bigKey {
width: 40px;
}
.numbers {
background-color: gray;
}
.operators {
background-color: #414141;
}
.functions {
background-color: #242424;
}
.decimal {
background-color: gray;
}
.none {
border: none;
}
button {
background-color: orange;
border: none;
}
button:hover {
cursor: pointer;
filter: brightness(1.2);
}
button:active {
box-shadow: 0 1px #666;
transform: translateY(1px);
}