-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
80 lines (71 loc) · 1.09 KB
/
styles.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
76
77
78
79
80
body {
display: flex;
justify-content: center;
align-items: center;
background-color: black;
}
.container {
display : flex;
flex-direction: column;
height: 450px;
width :320px;
padding: 5px 5x;
background-color:black;
color: white;
}
.numberDisplay{
text-align: end;
font-size:25px;
height:35px;
}
.operatorDisplay{
text-align: end;
font-size : 14px;
color:white;
height:10px;
width:auto;
margin-bottom: 5px;
}
.calculator{
display:grid;
grid-template-columns:repeat(4,1fr);
row-gap: 5px;
column-gap: 5px;
text-align: center;
padding: 0px;
height:auto;
padding-left: 20px;
}
.key{
padding: 0px;
height:50px;
width:50px;
border-radius:50%;
border:1px solid black;
}
.screen {
padding:50px;
grid-column-start: 1;
grid-column-end:5;
display:flex;
flex-direction: column;
}
#no0 {
grid-column-start:1;
grid-column-end: 3;
text-align: left;
width:125px;
padding-left:44px;
border-radius: 10px;
}
#AC,
#signChange,
#percentage {
background-color:#807F68
;
}
.operatorKey,
#equals {
background-color:#2B803E;
color:white;
}