-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.css
85 lines (73 loc) · 1.31 KB
/
site.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
78
79
80
81
82
83
84
85
body {
background-color: darkred;
}
nav {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: orangered;
}
nav a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
nav a:hover {
background-color: #111;
}
.h1 {
font-size: large;
color: black;
font-family: Arial, Helvetica, sans-serif;
}
h2,
legend,
label,
li a {
font-size: small;
color: rgb(220, 220, 220);
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
div.form {
display: block;
text-align: center;
}
form {
display: inline-block;
margin-left: auto;
margin-right: auto;
text-align: left;
padding-top: 100px;
}
input[type=text],
textarea {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
div.container {
text-align: center;
}
ul.songUL {
display: inline-block;
text-align: left;
}
figcaption {
font-size: medium;
color: rgb(220, 220, 220);
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
text-align: center;
}