-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
41 lines (36 loc) · 986 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
body {
font-family: 'Cinzel', serif;
background-color: #D8D8D8;
}
div {
text-align: center;
background-color: gray;
width: 500px;
margin: 0 auto 0 auto;
padding: 0 10px 0 10px;
border: 1px solid black;
border-radius: 10px;
}
h1 {
color: white;
text-shadow: 1px 2px 1px black;
border-bottom: 1px solid #666666;
}
p {
text-decoration: underline;
}
input[type="button"] {
background-color: black;
border: none;
color: white ;
padding: 15px 25px 15px 25px;
margin: 0 auto 15px auto;
text-align: center;
font-size: 20px;
cursor: pointer;
font-family: 'Cinzel', serif;
}
input[type="button"]:hover {
background-color: #003380;
color: #ffffe6;
}