-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (60 loc) · 1.06 KB
/
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
63
64
65
body {
background-color: #f2e8cf;
color: #bc4749;
/* A good sans-serif font stack */
font-family: "Pragati Narrow", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
text-align: center;
padding: 50px 60px;
margin: 0;
font-size: 1.3em;
}
#santa {
height: 100px;
}
#intro h1 {
font-size: 2em;
}
#intro p {
color: #386641;
}
#intro h1,
p {
margin: 0px;
}
#button {
background-color: transparent; /* Green */
border: 1px solid #bc4749;
color: #bc4749;
padding: 5px 10px;
border-radius: 10px;
text-align: center;
text-decoration: none;
display: inline-block;
font-family: inherit;
font-size: 1em;
margin: 20px auto;
transition-duration: 0.4s;
}
#button:hover {
cursor: pointer;
border: 1px solid #386641;
color: #386641;
}
#table {
width: 60%;
text-align: left;
margin: 0 auto;
}
#table th {
border-bottom: 2px solid #bc4749;
}
#table tbody tr:first-child td {
padding-top: 10px;
}
/* Alternate row color (magic) */
#table tbody tr:nth-child(odd) {
color: #a7c957;
}
#table tbody tr:nth-child(even) {
color: #6a994e;
}