-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add cards for SoundCloud playlists.
- Delete some playlists.
- Loading branch information
asce1062
committed
Jan 4, 2018
1 parent
87d37cb
commit 91ac9c0
Showing
6 changed files
with
99 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> | ||
<html> | ||
|
||
<head> | ||
<title>404 Not Found</title> | ||
</head> | ||
|
||
<body> | ||
<h1>Not Found</h1> | ||
<p>The requested URL /ui/stars-blue.gif was not found on this server.</p> | ||
</body> | ||
|
||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/* | ||
Global dezign done by Alex.immer | ||
*/ | ||
|
||
body { | ||
background: #123 url(stars.anim.gif) | ||
} | ||
|
||
|
||
/* | ||
IE workarounds | ||
*/ | ||
|
||
.lt-ie9 body { | ||
background: #123 url(stars-blue.html) fixed | ||
} | ||
|
||
.lt-ie9 .bg1, | ||
.lt-ie9 .bg2, | ||
.lt-ie9 .bg3 { | ||
display: none | ||
} | ||
|
||
.lt-ie7 .logo a { | ||
background-image: url(aleximmer-logo.gif) | ||
} | ||
|
||
.wrapper { | ||
margin: 0 auto; | ||
width: 90%; | ||
} | ||
|
||
.cards { | ||
list-style: none; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.cards li { | ||
background-color: rgba(0, 0, 0, 0.0); | ||
color: #fff; | ||
flex: 1 1 200px; | ||
} | ||
|
||
.cards h2 { | ||
background-color: rgba(0, 0, 0, 0.0); | ||
margin: 0; | ||
padding: 10px; | ||
} | ||
|
||
.cards p { | ||
padding: 10px; | ||
} | ||
|
||
.flex { | ||
display: flex; | ||
flex-wrap: wrap; | ||
margin: 0 -10px; | ||
} | ||
|
||
.flex li { | ||
flex: 1 1 200px; | ||
margin: 10px; | ||
} | ||
|
||
.grid { | ||
display: grid; | ||
grid-template-columns: repeat(3, 1fr); | ||
/*grid-template-columns: repeat(auto-fill, minmax(200px 1fr));*/ | ||
grid-gap: 20px; | ||
} |