-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator.css
75 lines (66 loc) · 1 KB
/
calculator.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
66
67
68
69
70
71
72
73
74
75
*{
margin: 0px;
padding: 0px;
font-size: 16px;
}
button{
padding: 2rem;
font-weight: bold;
}
.calc-border{
border-radius: 5%;
width: 27rem;
height: auto;
}
#outer-border{
background-color: black;
padding: 1rem;
}
#inner-border{
background-color: white;
}
.display{
background-color: white;
padding: 1rem;
font-size: 1.5rem;
color: gray;
text-align: right;
}
#input{
margin: 0rem 1.2rem 0rem 1.2rem;
border-bottom-style: dotted;
}
#output{
margin: 0rem 1.2rem 0rem 1.2rem;
}
#interface{
display: flex;
background-color: yellow;
}
#keypad{
background-color: rgb(20, 20, 100);
padding: 0.2rem;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
#operations{
background-color: gray;
padding: 0.2rem;
display: flex;
//flex-wrap: wrap;
flex-direction: column;
justify-content: center;
align-items: center;
}
.number{
margin: 10px;
border-radius: 50%;
background-color: white;
}
.operation{
margin: 10px;
border-radius: 50%;
background-color: white;
}