-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
57 lines (50 loc) · 1.14 KB
/
style.css
File metadata and controls
57 lines (50 loc) · 1.14 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
*{
padding: 0;
margin: 0;
background: #222;
font-family: Arial, Helvetica, sans-serif;
box-sizing: border-box;
}
.container{
height: 100vh;
width: 90%;
background: linear-gradient(145deg, rgb(216, 137, 9), rgb(78, 78, 225));
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
border-radius: 10px;
margin: auto;
}
/* .calculator{
background: linear-gradient(111deg,rgb(91, 253, 167),rgb(239, 224, 51));
} */
.area input{
height: 45px;
width: 90%;
border-radius: 10px;
padding: 20px;
background: rgb(140, 250, 222);
margin: auto;
align-items: center;
justify-content: center;
margin-left: 10px;
margin-top: 10px;
}
.btn{
margin-left: 10px;
}
.btn input{
height: 45px;
width: 45px;
background: linear-gradient(190deg, rgb(66, 127, 232),rgb(73, 227, 248));
margin-top: 5px;
}
.btn .equal{
width: 80%;
background: linear-gradient(190deg, rgb(135, 232, 66),rgb(248, 219, 73));
align-items: center;align-content: center;
justify-content: center;
margin-bottom: 10px;
border-radius: 20px;
}