-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalculator.css
94 lines (81 loc) · 1.5 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#calculator{
width:33%;
padding:10px;
margin:auto;
border:6px groove rgb(121, 14, 14);
background-color: coral;
display:flex;
white-space:nowrap;
display:inline-block;
border-radius: 20px;
box-shadow:0px 6px 0px 0px rgba(209, 12, 12, 0.842);
justify-content: center;
align-items: center;
position: fixed;
overflow: auto;
}
p{
text-align:center;
}
#Display{
width:70%;
height: 60px;
margin-bottom: 10px;
border:4px groove yellow;
font-size:32px;
border-radius:6px;
margin-left:9%;
margin-top: -86px;
background-color:#e5ecec;
max-height: 60px;
max-width: 20%;
overflow: hidden;
position: fixed;
}
#sqr{
background-image:linear-gradient(to right,#041d1d, #505cff, #fa204f );
color: #e5ecec;
margin-bottom: 22px;
}
#equall{
background-image:linear-gradient(to right, white, #03eeef, #fa204f );
color: black;
}
button{
width:80px;
height:50px;
overflow:auto;
tab-size:1;
margin-bottom: 10px;
margin-left:1px;
background-image:linear-gradient(to right,#c51b26, #f7f476, #ffda09 );
border-radius: 8px;
box-shadow:0px 0px 0px 5px rgba(0,0,0,0.2);
}
h1{
display:flex;
margin-top:5px;
}
#glass{
max-width:98%;
max-height: 8%;
box-shadow:0px 0px 0px 12px rgba(0,0,0,0.2);
border:0.2px solid white;
background-color: #e5ecec;
border-radius: 18px;
justify-content: center;
margin-left:2px;
margin-top: 5px;
}
.result{
text-align: right;
font-size: 65px;
overflow:hidden;
white-space: nowrap;
position: fixed;
}
#mode{
width: 50%;
height: 60px;
margin-top: 25px;
}