-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
119 lines (104 loc) · 2.24 KB
/
style.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
html{
height:100vh;
margin: 0;
background: rgb(82, 22, 22);
}
body {
display:flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
height:100%;
margin: 0;
}
header{
font-size: 5vh;
font-family: 'Courier New', Courier, monospace;
padding: 20px;
color: rgb(228, 228, 228);
}
.center{
/* height: 75%; */
/* aspect-ratio: 1.3/2; */
width: 350px;
height: 565px;
background: #E8BEAC;
border-radius: 20px;
box-shadow: 15px 15px 7px rgba(0, 0, 0, 0.37);
padding: 20px;
box-sizing: border-box;
display: flex;
flex-direction: column;
}
.display{
/* height: 20%; */
background: rgb(27, 27, 27);
border-radius: 10px;
margin-bottom: 20px;
display: flex;
flex-direction: column;
flex:1;
box-shadow: inset 0px 3px 6px 3px rgba(0, 0, 0, 0.479);
}
.upDisplay{
height:60px;
background: rgb(27, 27, 27);
border-radius: 10px;
box-sizing: border-box;
padding : 10px;
color : darkgreen;
display : flex;
justify-content : end;
align-items : end;
font-size : 30px;
font-family : 'Courier New', Courier, monospace;
font-weight : bold;
}
.downDisplay{
height: 35px;
box-sizing: border-box;
background: rgb(27, 27, 27);
border-radius: 10px;
padding: 0px 10px 5px 10px;
color : darkgreen;
display : flex;
justify-content : end;
align-items : end;
font-size : 22px;
font-family : 'Courier New', Courier, monospace;
font-weight : bold;
}
.erase{
display: flex;
height: 15%;
gap: 20px;
}
.numbers{
flex: 4;
margin-top: 10px;
border-radius: 10px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
aspect-ratio: 4/5;
}
footer {
font-size: 3vh;
padding: 20px;
font-family:'Courier New', Courier, monospace;
color:darkgray;
text-align: center;
}
#boxed{
background-color : black;
margin-top : '10px';
border-radius : 50%;
color : white;
display : flex;
justify-content : center;
align-items : center;
font-size : 25px;
font-weight : bold;
font-family :'Courier New', Courier, monospace;
box-shadow : 5px 5px 7px rgba(0, 0, 0, 0.57);
}