HiddenSounds/css/main.css

52 lines
774 B
CSS
Raw Normal View History

2019-05-23 12:41:48 +00:00
body {
background-color: #003239;
}
* {
2019-05-23 16:39:14 +00:00
color: aqua;
2019-05-23 12:41:48 +00:00
}
.bg-image {
/*background-image: url("../HS.png");*/
2019-05-23 16:39:14 +00:00
background-image: url("../bg.png"), linear-gradient(to bottom, #1d1d1d, #1d1d1d, #243537, #009a9a);
/*#727272);*/
2019-05-23 12:41:48 +00:00
background-size: cover;
2019-05-23 16:39:14 +00:00
filter: blur(16px);
2019-05-23 12:41:48 +00:00
height: 100%;
2019-06-01 00:30:54 +00:00
position: fixed;
2019-05-23 12:41:48 +00:00
top: 0;
left: 0;
width: 100%;
z-index: -1;
margin: 0;
padding: 0;
2019-05-23 16:39:14 +00:00
}
#popularSongs, #hiddenSongs {
width: 38%;
2019-05-23 16:39:14 +00:00
margin: 4%;
border: 1px #78ffee solid;
padding: 20px;
2019-05-23 16:39:14 +00:00
}
#popularSongs h2, #hiddenSongs h2 {
text-align: center;
color: aqua;
}
#popularSongs {
float: left;
}
#hiddenSongs {
float: right;
}
h1 {
text-align: center;
}
.content {
/*background-color: #1f2523;*/
}