Skip to content

Commit

Permalink
Moved stylesheet to external
Browse files Browse the repository at this point in the history
  • Loading branch information
itsjustaplant committed Dec 4, 2020
1 parent d1d6306 commit 67722b2
Showing 1 changed file with 93 additions and 0 deletions.
93 changes: 93 additions & 0 deletions app.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
#close-button{
margin-top: 1.5vw;
margin-left: 2vw;
background: #ff5c5c;
border: 1px solid #e33e41;
border-radius: 50%;
display: inline-block;
z-index: 3;
position: fixed;
height: 12px;
width: 12px;
opacity: 0;
font-size: 8pt;
text-align: center;
vertical-align: center;
-webkit-transition: all 0.2s ease;
}
#cover:hover > #close-button {
opacity: 100;
}
#minimize-button{
margin-top: 1.5vw;
margin-left: 6vw;
background: #ffd60a;
border: 1px solid #e33e41;
border-radius: 50%;
display: inline-block;
z-index: 3;
position: fixed;
height: 12px;
width: 12px;
opacity: 0;
font-size: 8pt;
text-align: center;
vertical-align: center;
-webkit-transition: all 0.2s ease;
}
#cover:hover > #minimize-button {
opacity: 100;
}

body::-webkit-scrollbar {
display: none;
}
body{
-ms-overflow-style: none;
scrollbar-width: none;
}
#cover_art{
width: 100%;
height: 100vw;
position: fixed;
alignment: center;
z-index: 2;
-webkit-user-drag: none;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
-webkit-app-region: drag;
}
#lyric_section{
margin: auto;
text-align: center;
-webkit-user-select: none;
}
#song_title{
text-align: center;
display: block;
z-index: 2;
width: 100vw;
height: 5vw;
position: fixed;
font-weight: bold;
margin-top: 100vw;
font-size: 18px;
}
#lyrics{
text-align: center;
display: block;
position: absolute;
width: 100vw;
margin-top: 105vw;
font-size: 16px;
overflow: hidden;
}
pre{
overflow-x: auto;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
}

0 comments on commit 67722b2

Please sign in to comment.