-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (52 loc) · 814 Bytes
/
style.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
* {
margin:0;
padding:0;
font-family:sans-serif;
}
body {
border: 2px solid black;
background-color: #fcfaf2;
}
body h1 {
margin-top: 20px;
text-align: center;
font-family: cursive;
}
#container {
margin: 0 auto;
margin-top: 60px;
border: 40px solid red;
border-radius: 50px;
height: 600px;
width: 600px;
}
.highlight {
background-color: black;
}
#reset-container{
padding-top: 30px;
margin: 0 auto;
width: 50px;
}
#reset {
text-decoration: none;
cursor: pointer;
padding: 10 20 10 20;
border: 1px solid darkgray;
border-radius: 5px;
}
#reset:hover {
border: 1px solid red;
}
footer span{
font-family: monospace;
padding: 10 0 10 0;
}
footer {
position: fixed;
text-align:center;
left: 0;
bottom: 0;
width: 100%;
margin-bottom: 30px;
}