-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
60 lines (60 loc) · 1.16 KB
/
app.css
File metadata and controls
60 lines (60 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
width: 100vw;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.calculator{
/* margin: 3rem; */
width: 400px;
min-width: 400px;
height: 700px;
box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.3);
overflow: hidden;
border-radius: 1.6rem;
padding: 1rem;
background-color: black;
color: white;
}
input{
padding: 1rem;
width: 100%;
height: 200px;
font-size: 3.5rem;
text-align: right;
background-color: black;
color: white;
border: none;
outline: none;
pointer-events: none;
}
.buttons{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
button{
width: 80px;
height: 80px;
margin: 5px;
background-color: rgb(41, 41, 41);
color: white;
border-radius: 50%;
border: none;
font-size: 1.5rem;
font-weight: bold;
cursor: pointer;
}
.gray{
/* background-color: gainsboro; color: black; */
background-color: rgb(152, 151, 151);
}
.orange{
background-color: orange;
}