-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
78 lines (66 loc) · 1.81 KB
/
styles.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
css *{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container{
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: linear-gradient(-45deg, rgb(58, 76, 96), rgb(77, 78, 109), rgb(81, 62, 184));
}
table{
margin: auto;
margin-top: 0.8rem;
}
input{
font-size: 1.7rem;
height: 6rem;
border: none;
text-align: end;
font-weight: bold;
background-color: white;
color:black;
}
button{
font-size: 1.5rem;
width: 3.8rem;
height: 3.8rem;
margin: 1rem;
border-radius: 50%;
border-width: 0;
font-weight: 500;
}
button:hover{
background: #feffff;
background-image: -webkit-linear-gradient(top, #2c0624, #275978);
background-image: -moz-linear-gradient(top, #b0b8bd, #c4c9cc);
background-image: -ms-linear-gradient(top, #b0b8bd, #c4c9cc);
background-image: -o-linear-gradient(top, #b0b8bd, #c4c9cc);
background-image: linear-gradient(to bottom, #b0b8bd, #c4c9cc);
text-decoration: none;
}
.calculator{
display: inline-block;
background:black;
margin: 1rem;
padding: 0.5rem;
border-radius: 0.3rem;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2) , 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.calculator .c1{
background-color: brown;
}
.calculator .c2{
background-color: aquamarine;
}
.calculator .c3{
background-color: rgb(199, 226, 236);
}
.calculator .c4{
background-color: rgb(243, 162, 162);
}
.calculator .clr{
background-color: rgb(182, 240, 249);
}