-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
75 lines (66 loc) · 1.23 KB
/
style.css
File metadata and controls
75 lines (66 loc) · 1.23 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
body {
display: flex;
justify-content: center;
align-items: center;
height: 90vh;
background-color: #000000;
overflow: hidden;
}
#container {
height: 600px;
width: 400px;
border: 2px solid black;
border-radius: 15px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 10px;
background-color: #146C94;
color: white;
}
#header {
width: 350px;
height: 20px;
padding: 15px;
font-size: 20px;
}
#screen {
height: 50px;
width: 350px;
padding: 15px;
font-size: 45px;
}
#button-container {
height: 400px;
width: 350px;
padding: 15px;
display: grid;
gap: 10px;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(5, 1fr);
}
.buttons {
height: 70px;
width: 70px;
border-radius: 50%;
border: 1px solid transparent;
background-color: #F6F1F1;
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
font-size: 20px;
}
.buttons:active {
background-color: rgb(208, 208, 208);
}
.buttons div {
cursor: context-menu;
}
#zero {
grid-row: 5/6;
grid-column: 1/3;
width: 160px;
border-radius: 35px;
}