-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (53 loc) · 1.01 KB
/
style.css
File metadata and controls
58 lines (53 loc) · 1.01 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
*{
margin: 0;
padding: 0;
}
body{
background-image: url(/images/math.jpg);
}
.container {
text-align: center;
margin-top: 23px
}
table {
margin: auto;
}
input {
border: 5px solid #244624;
padding: 0 5px;
font-size: 34px;
height: 65px;
width: 354px;
border-radius: 0%;
background-color: rgb(200, 232, 234);
text-align: right;
}
button {
border-radius: 20px;
font-size: 35px;
background: #978fa0;
background-image: radial-gradient(rgb(181, 180, 180),rgb(90, 89, 89));
width: 102px;
height: 90px;
margin: 6px;
cursor: pointer;
font-weight: bolder;
box-shadow: 2px 2px whitesmoke;
border-radius: 35px;
}
button:hover{
font-size: 30px;
transform: translateY(2px);
transform: translateX(2px);
box-shadow: none;
}
.calculator {
box-shadow: 0 0 20px 3px;
border: solid white;
outline: black;
background-color: black;
opacity: 0.85;
padding: 23px;
border-radius: 25px;
display: inline-block;
}