-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (53 loc) · 1.08 KB
/
Copy pathstyle.css
File metadata and controls
53 lines (53 loc) · 1.08 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
body {
padding: 0;
margin: 0;
background: linear-gradient(to right, #00AAFF, #b3dd52);
}
h1{
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
#heading{
margin-top: 2%;
margin-bottom: 1%;
font-size: 4rem;
color: darkblue;
text-shadow: 5px 0 2px yellow;
}
.container{
text-align: center;
margin-top: 23px;
}
table{
margin: auto;
}
input{
height: 58px;
font-size: 34px;
width: 90%;
border: 2px solid black;
border-radius: 12px;
text-align: right;
padding: 1% 3%;
background-color: whitesmoke;
}
button{
margin: 5px;
font-size: 30px;
background-color: rgb(211, 204, 204);
border: 2px solid black;
width: 95px;
height: 60px;
border-radius: 10px;
height: 60px;
}
button:hover{
background-color: black;
color: white;
}
.calculator{
border: 5px solid darkblue;
background-color:yellow;
padding: 20px;
border-radius: 25px;
display: inline-block;
}