-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator.css
64 lines (58 loc) · 1.91 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
/*Body color */
body{
background-color: #f4f6ff;
}
/* adjust calculator to center */
.adjust{
height: auto;
display: flex;
justify-content: center;
align-items: center;
margin-top: 100px;
}
/* clear button */
#clr{
height: 100px;
}
.title{
border-radius: 5px;
margin-bottom: 10px;
text-align:center;
width: fit-content;
height: fit-content;
color:rgb(11, 31, 11);
border: solid rgb(104, 86, 86) 2px;
background-color: #ebecf1;
font-size: larger;
text-transform: uppercase;
box-shadow: -3px -3px 7px #ffffff73, 3px 3px 5px rgba(1, 4, 8, 0.288);
}
table{
width: fit-content;
height: fit-content;
background-color: #eff0f7;
box-shadow: -3px -3px 7px #ffffff73, 3px 3px 5px rgba(0, 0, 0, 0.288);
}
input[type="button"]
{
font-weight: 900;
font-size: larger;
border-radius: 40px;
background-color: #f0f2f8;
color: black;
border: solid black 2px;
width:100%;
box-shadow: inset -3px -3px 100px #ffffff73, 3px 3px 5px rgba(10, 12, 3, 0.925);
}
input[type="text"]
{
font-size: large;
text-align: right;
background-color:white;
border: solid black 2px;
font-weight: 900;
height: 0px;
width: fit-content;
padding: 30px;
box-shadow: -3px -3px 7px #ffffff73, 3px 3px 5px rgba(6, 10, 0, 0.726);
}