-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (60 loc) · 1.08 KB
/
style.css
File metadata and controls
71 lines (60 loc) · 1.08 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
*{
padding: 0;
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body{
width: 100vw;
height: 100vh;
background-color: #1c1c1c;
}
#container{
width: 350px;
margin: auto;
height: 100vh;
display: flex;
flex-direction: column;
}
input{
flex-grow: 1;
background-color: #1c1c1c;
outline: none;
border: 0;
color:white;
text-align: right;
padding: 0px 30px;
font-size: 64px;
}
.button-grid{
flex-grow: 2;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
}
button{
width: 70%;
height: 80%;
border-radius: 100%;
border: 0;
font-size: 28px;
color: white;
background-color: #505050;
cursor: pointer;
font-weight: 400;
transition-duration: 200ms;
}
button:active{
transform: scale(0.85);
}
.gray-button{
background-color: rgb(195, 186, 186);
color: #1c1c1c;
}
.yellow-btn{
color: white;
background-color: rgb(248, 159, 5);
}
.zero{
grid-column: span 2;
border-radius: 76px;
}