-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyle.css
More file actions
197 lines (137 loc) · 2.88 KB
/
style.css
File metadata and controls
197 lines (137 loc) · 2.88 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
body {
background-image: url(/proxy/123456/github.com/Jordan-Gilliam/SpotifyWebApp/blob/master/"images/white_wall_hash_@2X.png");
color: grey;
}
/*Side Navbar*/
/*===============================================================================*/
i.material-icons.menu {
font-size: 60px;
margin-left: 30px;
}
/*Search Header*/
#searchIcon {
margin-left: 5%;
margin-right: 2%;
margin-top: 5%;
}
#searchHeader {
font-size: 20px;
}
/*Search Button*/
#add-artist {
padding: 6px 8px;
background-color: #74eaa5;
color: white;
letter-spacing: 1px;
border-radius: 2px;
}
#add-artist:hover {
background-color: #88cb9c;
}
/*side nav top*/
.stick {
overflow-y: hidden;
}
/*side nav bottom*/
.scroll {
top: 320px;
<<<<<<< HEAD
height: 510px;
=======
height: 505px;
>>>>>>> 17d83a051726a6c3a8fb42c92684c312e7e3c945
padding-bottom: 10px;
z-index: 1000;
}
.side-nav li>a {
color: grey;
}
/*Search Artist Input*/
input:not([type]),
input[type=text]:not(.browser-default),
input[type=password]:not(.browser-default),
input[type=email]:not(.browser-default),
input[type=url]:not(.browser-default),
input[type=time]:not(.browser-default),
input[type=date]:not(.browser-default),
input[type=datetime]:not(.browser-default),
input[type=datetime-local]:not(.browser-default),
input[type=tel]:not(.browser-default),
input[type=number]:not(.browser-default),
input[type=search]:not(.browser-default),
textarea.materialize-textarea {
border: 1px solid grey;
height: 2rem;
width: 60%;
margin-left: 5%;
}
/*Body*/
/*================================================================================*/
/*Container*/
.container {
width: 90%;
padding-left: 300px;
}
/*artist name */
#show {
font-family: 'Fugaz One', cursive;
color: white;
font-size: 35px;
}
/*icon with artist name*/
#icon {
color: white;
font-size: 40px;
line-height: 100px;
}
#displayArtist {
color: white;
font-size: 50px;
line-height: 100px;
font-weight: bold;
}
/*Main Content Box*/
#mainContent {
background-image: linear-gradient( 135deg, #79F1A4 10%, #0E5CAD 100%);
box-shadow: 5px 5px 6px lightgrey;
padding: 0px 30px;
<<<<<<< HEAD
/*margin-top: 70px;*/
margin-top: 10%;
=======
margin-top: 10%;
>>>>>>> 17d83a051726a6c3a8fb42c92684c312e7e3c945
}
/*Collection when activated*/
.collection .collection-item.active {
background-color: white;
color: grey;
}
/*Collection*/
.collection .collection-item {
border-bottom: 0px;
}
/* Adds space between Concert Results */
.searchResult {
padding-bottom: 20px;
}
.carousel-item {
color: black;
text-align: center;
}
.collapsible-body,
.waves-effect {
color: black;
}
.search-keyword:hover {
text-decoration: underline;
}
@media only screen and (max-width: 992px) {
.container,
nav {
padding-left: 0;
}
.stick {
overflow-y: scroll;
}
}