-
Notifications
You must be signed in to change notification settings - Fork 178
/
Copy pathstyles.css
127 lines (101 loc) · 1.87 KB
/
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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/* BODY */
body {
width: 63%;
padding: 0;
margin: 0 auto;
font-family: "Arial";
font-size: 14px;
}
/* NAVIGATION BAR */
.nav {
clear: both;
border: 2px solid black;
padding: 15px 15px;
background-color: #FFB4B0;
}
/* Horizontal Bars between list items */
.nav > li {
display: inline-block;
border-right: 2px solid black;
padding: 0 5px 0 0;
}
.songData > li {
display: inline-block;
border-right: 2px solid black;
padding: 0 10px 0 10px;
}
li:last-child {
border-right: none;
}
/* Blue Sidebar*/
.blueSidebar {
box-sizing: border-box;
border: 2px solid black;
padding: 0 15px;
float: left;
width: 23%;
background-color: #4DD7FA;
height: 400px;
}
.blueGenre input {
}
.blueGenre {
/*display: flex;*/
width: 100%;
}
.checkbox {
width: 40%;
display: inline;
}
.blueContent {
margin: auto;
padding: 20px 0;
}
.blueContent label {
margin-bottom: 20px;
}
/* Yellow Main Content */
.mainContent {
box-sizing: border-box;
border: 2px solid black;
float: right;
width: 74%;
background-color: #FEFAC0;
height: 400px;
}
.mainContent h2 {
color: #785616;
padding-left: 40px;
}
.song {
margin-top: 30px;
margin-bottom: 30px;
}
/* EXTRAS FOR OPTION ELEMENTS */
/* Slider Styling*/
/*
input[type=range]{
-webkit-appearance: none;
}
input[type=range]::-webkit-slider-runnable-track {
width: 300px;
height: 10px;
background: white;
border: 2px solid black;
border-radius: 5px;
}
input[type=range]::-webkit-slider-thumb {
-webkit-appearance: none;
border: 2px solid black;
height: 16px;
width: 16px;
border-radius: 50%;
background: lightgrey;
margin-top: -5px;
}
input[type=range]:focus {
outline: none;
}
input[type=range]:focus::-webkit-slider-runnable-track {
background: grey;
}*/