-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
108 lines (84 loc) · 1.74 KB
/
main.css
File metadata and controls
108 lines (84 loc) · 1.74 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/* container styles */
header {
width: 90%;
border: 1.5px solid black;
background-color: #FFB4B0;
box-sizing: border-box;
position: fixed;
top: 0;
z-index: 100;
height: 3em; }
.main-top {
margin-top: 3.5em; }
.wrapper {
font-size: large;
background-color: #4DD7FA;
border: 1.5px solid black;
text-align: center; }
#content {
border: 1.5px solid black;
background-color: #FEFAC0;
color: #785616;
box-sizing: border-box; }
ul {
list-style-type: none; }
/* navigaion bar styles*/
.nav-item {
margin: auto; }
.nav-item:before {
content: "";
display: inline-block;
vertical-align: middle;
height: 3em; }
.nav-item li {
display: inline-block;
padding-right: 3px;
font-size: large; }
.nav-item li:not(:last-child) {
border-right: 2px solid black; }
/* sidebar styles */
label {
font-size: large; }
input[type="button"] {
display: block;
margin: auto;
font-size: large; }
/* content styles */
.songs {
display: block;
padding: 0 1em; }
.songs:nth-of-type(2n) {
background-color: SeaShell; }
.songs:nth-of-type(2n+1) {
background-color: MintCream; }
.songs:first-of-type {
font-weight: bold; }
h4 {
font-size: x-large;
margin-bottom: 20px; }
.content-item {
width: 100%;
padding-left: 0; }
.content-item li {
display: inline-block;
margin-right: 10px;
padding-right: 15px;
font-size: large; }
.content-item li:not(:last-child) {
border-right: 2px solid black; }
.hidden {
display: none; }
.show {
display: ruby-base; }
/* addsong style*/
.addsong {
text-align: center;
background-color: lightblue; }
.addsong label,
.addsong button {
display: block;
margin: 1em auto;
font-size: large; }
button {
background-color: tomato; }
/*# sourceMappingURL=main.css.map */