-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
65 lines (58 loc) · 1.09 KB
/
styles.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
*,
*::before,
*::after {
margin: 0;
box-sizing: border-box;
}
html {
height: 100%;
}
body {
display: flex;
min-height: 100%;
background: radial-gradient(rgb(5, 193, 255), rgb(171, 234, 255))
}
.container {
width: 360px;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 5px;
background-color: rgba(209, 247, 255, 0.826);
margin: auto;
padding: 2rem;
border-radius: 20px;
}
#screen {
word-wrap: break-word;
overflow: scroll;
overscroll-behavior: contain;
overflow-anchor: b;
height: 5rem;
font-size: 2.5rem;
text-align: end;
align-content: center;
background-color: white;
border-style: inset;
border-radius: 8px;
width: 100%;
}
.button-row {
display: flex;
width: 100%;
gap: 5px
}
.button {
flex: 1;
aspect-ratio: 1 / 1;
font-size: 2rem;
align-content: center;
background-color: white;
text-align: center;
border: 1px solid black;
border-radius: 20%;
}
.button:hover {
background-color: rgb(222, 222, 222);
}