-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (69 loc) · 1.24 KB
/
Copy pathstyle.css
File metadata and controls
69 lines (69 loc) · 1.24 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
67
68
69
body{
font-family: Arial, sans-serif;
background-color: slateblue;
background-image: url('5559852.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
text-align: center;
align-items: center;
color: white;
margin: auto;
}
h1 {
font-size: 2.5em;
margin-top: 20px;
}
p {
font-size: 1.2em;
margin: 10px 0;
}
.calculator {
height: 335px;
width: 303px;
border: 2px solid white;
border-radius: 10px;
margin: 20px auto;
}
.display{
height: 60px;
width: 275px;
border: 2px solid white;
background-color: white;
color: slateblue;
font-size: 30px;
border-radius: 5px;
text-align: right;
padding-right: 4px;
padding-top: 4px;
margin: 10px;
line-height: 60px;
}
button{
height: 39px;
width: 59px;
font-size: 20px;
margin: 5px;
border-radius: 5px;
border: none;
background-color: white;
color: slateblue;
}
button:hover {
background-color: lightgray;
}
footer {
margin-top: 40px;
padding: 15px 0;
background-color: #2424fc;
color: white;
font-size: 14px;;
border-top: 1px solid white;
}
a{
color: white;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}