-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (75 loc) · 1.16 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
66
67
68
69
70
71
72
73
74
75
76
77
body {
padding:0;
margin:0;
font: 15px/1.5 Arial,Helvetica,sans-serif;
}
nav ul {
list-style-type:none;
}
.container {
width:80%;
margin:auto;
}
#logo {
font-size: 3em;
font: 3em 'Jim Nightshade', TimesNewRoman, serif;
font-style: italic;
font-weight:bold;
}
#banner {
background: black;
min-height: 5em;
padding-top: 2em;
margin-bottom: 1.5em;
}
header a {
text-decoration: none;
color: white;
font: 1em TimesNewRoman, serif;
font-weight:bold;
}
header a:hover {
color: red;
}
nav {
float: right;
}
nav li {
display: inline;
padding: 0.30em;
text-transform: uppercase;
}
#songList {
list-style-type: none;
padding: 0;
margin: 0;
}
h2 {
margin: 0;
font: 1.5em TimesNewRoman, serif;
}
hr {
margin-top: 0;
size: 1px;
}
input {
margin-top: 1em;
padding: 0.3em;
margin-bottom: 1em;
}
#songList a {
color: black;
}
#songList a:hover {
color: white;
background: red;
}
@media(max-width: 768px){
header nav {
float: none;
}
input[type='text'],
textarea {
font-size: 16px; /* Avoid zooming in on text area on select */
}
}