-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathacalc.css
More file actions
66 lines (62 loc) · 1.28 KB
/
Copy pathacalc.css
File metadata and controls
66 lines (62 loc) · 1.28 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
*{
margin:0;
padding:0;
box-sizing: border-box;
}
body{
margin: 0;
padding: 0;
background-image: url("https://img.freepik.com/free-vector/gradient-network-connection-background_23-2148865392.jpg?size=626&ext=jpg&ga=GA1.1.1943073273.1709191626&semt=ais");
background-size: cover;
background-repeat:no-repeat;
background-repeat:fixed;
background-position:center;
background-origin: content-box;
}
.container{
text-align: center;
}
table{
margin: auto;
}
input{
border-radius: 25px;
border:5px solid #244624;
font-size:35px;
text-align: right;
height: 90px;
width:450px;
background-color:rgb(188, 223, 225);
}
button{
color:white;
border-radius:35%;
font-size: 25px;
background:rgb(25, 154, 228);
width: 70px;
height:60px;
margin:10px;
box-shadow: 2px 2px white;
}
button:hover{
color:chocolate;
}
button:active{
color: darkblue;
}
.calculator{
border: 4px solid blueviolet;
background-color: #eaebaa00;
padding:15px;
border-radius:60px;
display: inline-block;
}
p{
top:10%;
left:50%;
margin:10px;
padding:5px;
font-size:60px;
color: white;
text-shadow:10px 5px black;
}