diff options
author | colin <colin@cicadas.surf> | 2023-01-01 08:48:50 -0800 |
---|---|---|
committer | colin <colin@cicadas.surf> | 2023-01-01 08:48:50 -0800 |
commit | 7a3b904c26e2a08a88f58684d03aff3fb2a39c86 (patch) | |
tree | e25e9f241715ec9003f10f8b2e704264e87bbf80 /static/css/main-4.css | |
parent | c0ff3d5317e2a70329fde1b56b52dfa203f9c445 (diff) |
Add: password reset feature
Diffstat (limited to 'static/css/main-4.css')
-rw-r--r-- | static/css/main-4.css | 159 |
1 files changed, 159 insertions, 0 deletions
diff --git a/static/css/main-4.css b/static/css/main-4.css new file mode 100644 index 0000000..aa2463a --- /dev/null +++ b/static/css/main-4.css @@ -0,0 +1,159 @@ +body { + background-color: #1c1c1c; + color: #e8e7d5; + width: 90vw; + display: flex; + justify-content: center; + margin: auto; +} + +a { + color: #d478e0; +} + +h1,h2,h3,h4 { + color: #ff9430; +} + +button { + background: #1c1c1c; + color: #ff9430; + border: 1px solid #ff9430; + margin-left: 2px; + margin-right: 2px; +} + +button:hover { + cursor: pointer; +} + +button:disabled { + color: #666666; + border: 1px solid #666666; +} + +button:disabled:hover { + cursor: not-allowed; +} + +.header { + position: sticky; + top: 0px; + background-color: #1c1c1c; + padding: .1rem; + align-items: center; + justify-content: space-around; +} + +.center { + text-align: center; +} + +.row { + display: flex; + flex-direction: row; + flex-wrap: wrap; + justify-content: space-evenly; + align-content: baseline; +} + +.column { + display: flex; + flex-direction: column; + flex-wrap: wrap; + justify-content: center; + align-content: baseline; +} + +.centered-column { + display: grid; + grid-template-columns: 1fr minmax(300px,500px) 1fr; + padding: 10px; + column-gap: 40px; +} + +.four-column > div { + max-width: 50%; +} + +.track-list-item:hover { + cursor: pointer; + background-color: #454545; +} + +.container { + width: 100%; +} + +.player { + display: flex; + justify-content: space-evenly; + width: 100%; + flex-wrap: wrap; +} + +.now-playing { + display: flex; + width: 300px; + flex-direction: column; +} + +.controls { + display: flex; + flex-direction: row; + justify-content: space-between; +} + +.controls button { + font-size: 2em; + width: -moz-available; + width: -webkit-fill-available; + width: stretch; +} + +.now-playing-track { + background-color: #454545; +} + + +.playlist-display { + margin-top: 2rem; + width: auto; + display: flex; + flex-direction: column; +} + +.login { + margin-top: 10rem; +} + + +.card { + display: flex; + width: 200px; + height: 200px; + align-items: center; + justify-content: center; +} + +.thumb { + max-width: 180px; +} + +@media (max-width: 500px) { + body { + font-size: small; + width: 100vw; + } + + h1 { + font-size: medium; + } +} + +@media (min-width: 500px) { + .playlist-display { + height: 80vh; + overflow-y: auto; + } +} |