forked from Mehr-un-nisa/Calculator_Functionality
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcalculator.css
More file actions
46 lines (46 loc) · 762 Bytes
/
calculator.css
File metadata and controls
46 lines (46 loc) · 762 Bytes
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
*{
padding:0;
margin:0;
}
h1{
color: white;
text-align: center;
margin-top: 7%;
}
.form{
border: 2px solid white;
border-radius: 10px;
padding: 20px 5px 5px 5px;
box-shadow: 13px 15px 20px 0 rgba(0, 0, 0, 0.24),
0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
.button{
width: 50px;
height:50px;
font-size: 25px;
margin: 2px;
cursor: pointer;
background:grey;
border:none;
color: white;
}
.textview{
margin: 2px;
width: 207px;
font-size: 25px;
padding:2.60px;
border: 1.2mm ridge blueviolet;
color: black;
cursor: pointer;
}
.main{
position:absolute;
top: 50%;
left: 50%;
height: 50%;
transform: translateX(-50%) translateY(-50%);
}
body{
background:#FF416C;
height: 100%;
}