-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (55 loc) · 1.21 KB
/
style.css
File metadata and controls
61 lines (55 loc) · 1.21 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
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #FBF9F1;
}
main {
margin: 5rem auto;
background-color: #92C7CF;
max-width: 350px;
padding: 10px;
border: 2px solid #AAD7D9;
border-radius: 20px;
box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.screen {
background-color: #E5E1DA;
height: 80px;
border-radius: 10px;
color: #3C3D37;
font-size: 2em;
padding: 5px;
display: flex;
justify-content: end;
align-items: center;
font-family: "Orbitron", sans-serif;
margin-bottom: 8px;
box-shadow: inset 5px 4px 5px -2px rgba(0,0,0,0.64);
}
.buttons-container {
display: grid;
grid-template-columns: auto auto auto auto;
gap: 3px;
}
.button {
background-color: #AAD7D9;
color: #3C3D37;
border: none;
font-size: 1.25em;
text-align: center;
text-decoration: none;
display: inline-block;
border-radius: 50%;
padding: 20px;
margin: 4px 2px;
box-shadow: 6px 2px 7px -4px rgba(0,0,0,0.59);
cursor: pointer;
}
.equal {
grid-column: span 2;
border-radius: 25px;
}