-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterface.css
52 lines (51 loc) · 1 KB
/
interface.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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
border-radius: 50px;
}
.calculator{
display: flex;
width: 50%;
margin: 50px auto;
padding: 10px 5px 10px;
flex-direction: column;
height: 80vh;
gap: 10px;
box-shadow: 2px 2px 9px rgba(0,0,0,0.3);
background-color: black;
/* font-size: 70px; */
}
input{
width: 100%;
height: 1000px;
background-color: black;
color: white;
padding-left: 50px;
padding-top: 50px;
font-size: 30px;
border: 1px solid rgba(0,0,0,0.3);
}
.calculator .button{
display: flex;
height: 100%;
justify-content: center;
padding: 10px;
flex-wrap: wrap;
gap: 7px;
background-color: rgba(0,0,0,0.3);
/* font-size: 10px; */
}
.calculator .button button{
width: 20.1%;
height: 50px;
/* color: white; */
font-weight: 900;
}
.zero{
width: 100px !important;
padding-right: 35px;
}
.red{
background-color: orangered;
}