-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalculator.css
More file actions
56 lines (56 loc) · 1.11 KB
/
Copy pathcalculator.css
File metadata and controls
56 lines (56 loc) · 1.11 KB
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
body{
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: #343A40;
}
.main_div{
width: 350px;
height: 500px;
border-radius: 10px;
background-color: #212529;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 6%;
box-shadow: black 0px 0px 20px;
}
.screen_div{
width: 90%;
height: 15%;
border-radius: 10px;
background-color: transparent;
}
.buttons_div{
width: 90%;
height: 70%;
display: block;
border-radius: 10px;
background-color: grey;
}
.screen{
width: 90%;
height: 100%;
padding: 0 4.5%;
/* padding: 0; */
outline: 0;
border: 0;
border-radius: 10px;
font-size: 40px;
font-weight: bolder;
letter-spacing: 5px;
}
.screen::-webkit-inner-spin-button{display: none;}
button{
width: 20%;
margin: 2% 2%;
height: 21%;
border-radius: 5px;
border: 0;
box-shadow: black 0px 0px 10px;
font-weight: bolder;
font-size: 25px;
cursor: pointer;
}