-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalculator.css
More file actions
113 lines (92 loc) · 1.72 KB
/
calculator.css
File metadata and controls
113 lines (92 loc) · 1.72 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
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
body{
margin: 0;
padding:0;
line-height: 0.5;
background:linear-gradient(to left,#47d4e6,#1d1614);
font-family: sans-serif;
}
.calci{
width: 500px;
padding-top: 100px;
padding-bottom: 100;
position: absolute;
top:50%;
left:70%;
transition:0.25px;
transform: translate(-50%,-50%);
text-align: center;
}
#zero{
height: 55;
width: 116;
font-size: 20;
font-family: sans-serif;
font-weight: 300;
}
#display{
border:none;
background: white;
border-radius: 30px;
width: 245;
font-size: 20;
font-family: sans-serif;
font-weight: 300;
height: 60;
margin: auto;
border:2px solid white(5, 218, 255, 0.726);
color: black;
}
.button{
width: 50;
height: 50;
padding: 20;
font-size: 20px;
border: none;
background: white;
font-family: sans-serif;
font-weight: 30;
border-radius: 30px;
margin: 1.5px;
transition:0.25s;
}
.container {
display:flex;
justify-content: center;
align-items: center;
height: 100vh;
}
h1{
margin-top: 300px;
margin-left: 100px;
font-family: sans-serif;
font-size:50;
text-decoration: underline;
color: white;
text-transform: uppercase;
font-weight: 700;}
h2{
color: white;
margin-top: -1px;
font-family: sans-serif;
margin-left: 438px;
}
.operator{
width: 55;
height: 55;
padding-top: -1;
font-size: 20;
text-align: center;
color: black;
border: none;
background: white;
font-family: sans-serif;
font-weight: 500;
border:0;
border-radius: 30px;
margin: 1.5;
transition:0.25px;
cursor:pointer;
}
.operator:hover{
background: #00d9ff;
}