-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
66 lines (55 loc) · 1.09 KB
/
styles.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
63
64
65
66
body{
background-image: url(images/pawsBg1.jpg);
background-repeat: no-repeat;
/*background-attachment:fixed;*/
background-position: center;
background-size:cover;
}
h1{
font-family:"Bradley Hand", cursive;
font-size: 3em;
color:#00008b;
text-align: center;
}
p{
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
}
.animalEmoji{
font-size:3em;
}
table{
font-family: Arial, Helvetica, sans-serif;
border-collapse: collapse;
text-align: center;
width: 60%;
margin: 0px auto 50px;
}
tr{
border-top: 1px solid black;
border-bottom: 1px solid black;
}
thead tr{
border-top: 1px solid #971a58;
border-bottom: 1px solid #971a58;
font-family:"Bradley Hand", cursive;
color:#00008b;
background-color: #fff5e0;
}
thead tr th, tbody tr td{
padding: 5px 0px;
}
tbody{
background: linear-gradient(to top, #ffffff, #fff5e0);
background-repeat: no-repeat;
}
/*
tr:nth-child(even){
background-color: #fcedee;
}
*/
#footerText{
text-align: center;
font-size: 0.75em;
color:#00008b;
}