-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.css
64 lines (45 loc) · 857 Bytes
/
app.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
.calculator-body {
zoom:165%;
width: 250px;
margin: auto;
height: 250px;
border-radius: 5px;
background-color: rgb(105, 202, 133);
}
.calculator-body h1{
margin-top:20%;
padding: 2.5%;
text-align: center;
color:rgb(250, 248, 251);
font-family:Arial, Helvetica, sans-serif;
}
.result {
height: 30px;
width: 100%;
background-color: rgb(105, 202, 133);
}
.result input {
width:95%;
background-color: rgb(200, 178, 214);
margin-left: 3px;
height:25px ;
}
.button {
/* display: block;*/
display: flex;
justify-content: space-around;
flex-wrap: wrap;
background-color: rgb(105, 202, 133);
padding: 10px;
}
button {
width: 25%;
height: 25%;
font-size: 75%;
color: rgb(174, 135, 200);
border: none;
border-color:#3C4857;
border-width: 1px 1px 0px 0;
border-style: solid;
padding: 5px;
}