-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
66 lines (57 loc) · 1.16 KB
/
styles.css
File metadata and controls
66 lines (57 loc) · 1.16 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
.calculator {
margin: 50px auto;
padding: 18px;
width: 300px;
height: 500px;
background-color: #000000;
border-radius: 20px;
color: #FFFFFF;
font-family: Arial;
box-shadow: 4px 4px 4px #3D3E42
}
.screen {
text-align: right;
user-select: none;
line-height: 10px;
font-size: 60px;
}
.buttons {
display: grid;
grid-template-columns: repeat(4, 70px);
grid-template-rows: repeat(4, 70px);
grid-gap: 7px;
justify-items: center;
}
.btn {
width: 60px;
height: 60px;
background-color:#3D3E42;
border-radius: 50%;
text-align: center;
line-height: 60px;
user-select: none;
font-size: 1.5rem;
}
.btn:hover {
filter: brightness(120%)
}
.btn:active {
filter: brightness(50%)
}
.bg-orange {
background-color: #F37D0D
}
.bg-grey {
background-color: #B4B0AC
}
.zero {
grid-column: 1/3;
width:100%;
border-radius: 34px;
}
.header {
display: inline-block;
align-items: center;
justify-self: first baseline;
align-items: center;
}