-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
67 lines (54 loc) · 982 Bytes
/
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
67
body {
font-family: 'Nunito Sans', Arial, Helvetica, sans-serif;
background-color: hsl(240, 10%, 96%);
}
header {
margin: 0 auto;
text-align: center;
width: 75%;
}
h1 {
color: hsl(60, 15%, 12%);
}
p {
color: hsl(87, 12%, 29%);
}
code {
font-family: 'PT Mono', monospace;
font-size: 15px;
background-color: hsl(293, 11%, 44%);
color: hsl(240, 10%, 96%);
}
table {
border: 1px solid #14213d;
border-collapse: collapse;
width: 75%;
margin: 0 auto;
}
thead {
background-color: hsl(87, 12%, 29%);
color: hsl(240, 10%, 96%);
}
th, td {
border: 1px solid black;
padding: 0.2em;
text-align: center;
}
tbody tr:hover {
background-color: hsl(35, 100%, 88%);
}
footer {
width: 75%;
margin: 0 auto;
text-align: center;
}
footer p {
display: inline-block;
color: hsl(87, 12%, 29%);
}
footer a {
color: hsl(87, 12%, 29%);
}
footer a:hover {
color: hsl(293, 11%, 44%);
}