diff options
author | Indrajith K L | 2022-11-26 04:19:24 +0530 |
---|---|---|
committer | Indrajith K L | 2022-11-26 04:19:24 +0530 |
commit | 832d1a4363f6dd99bef2bc9a61f2b58a6e76c4a4 (patch) | |
tree | d5a4f7cbb472b622019341a353a2a0fbbaeb3c5b /hg.css | |
parent | d6987de7b8947d5df5fe7896797bdec8ea337d70 (diff) | |
download | retrowave-player-832d1a4363f6dd99bef2bc9a61f2b58a6e76c4a4.tar.gz retrowave-player-832d1a4363f6dd99bef2bc9a61f2b58a6e76c4a4.tar.bz2 retrowave-player-832d1a4363f6dd99bef2bc9a61f2b58a6e76c4a4.zip |
Cosmetic Changes
History Upload implementation
Diffstat (limited to 'hg.css')
-rw-r--r-- | hg.css | 74 |
1 files changed, 68 insertions, 6 deletions
@@ -1,3 +1,7 @@ +@font-face { + font-family: 'StreamSter'; + src: url(./fonts/Streamster.ttf); +} #app, body, html { @@ -20,6 +24,7 @@ body { body { background: #f5b7f0; + background-image: url("./images/rainbowprism.gif"); } #app { @@ -106,14 +111,14 @@ body { left: 0; } -h3 { - font-size: 24px; +h3#track-name { + font-size: 26px; font-weight: 500; letter-spacing: 2px; - color: #9CC9E3; - font-family: 'Roboto', sans-serif; + color: #e91e63; + font-family: 'StreamSter', sans-serif; margin-bottom: 0; - background: rgb(0 0 0 / 55%); + background: rgb(0 0 0 / 71%); padding: 10px; } @@ -135,7 +140,7 @@ hr { line-height: 18px; } -#info { +#upload-info { bottom: 0px; position: absolute; right: 8px; @@ -179,4 +184,61 @@ dialog::backdrop { rgba(0, 0, 0, 0.3) 1px, rgba(0, 0, 0, 0.3) 20px); backdrop-filter: blur(3px); +} + +.modal { + position: fixed; + width: 100vw; + height: 100vh; + opacity: 0; + visibility: hidden; + transition: all 0.3s ease; + top: 0; + left: 0; + display: flex; + align-items: center; + justify-content: center; + z-index: 9999; +} + +.modal.open { + visibility: visible; + opacity: 1; + transition-delay: 0s; +} + +.modal-bg { + position: absolute; + background: teal; + background-image: url(./images/comp009.jpg); + width: 100%; + height: 100%; +} + +.modal-container { + border-radius: 10px; + background: #fff; + position: relative; + padding: 30px; +} + +.modal-close { + position: absolute; + right: 15px; + top: 15px; + outline: none; + appearance: none; + color: red; + background: none; + border: 0px; + font-weight: bold; + cursor: pointer; +} + +.text-center { + text-align: center; +} + +.mt-5 { + margin-top: 10px; }
\ No newline at end of file |