rearranges files and adds contact bar
This commit is contained in:
parent
75fb2e7094
commit
c28ae8e64a
14 changed files with 192 additions and 45 deletions
84
stylesheets/audio.css
Normal file
84
stylesheets/audio.css
Normal file
|
@ -0,0 +1,84 @@
|
|||
#audioContainer
|
||||
{
|
||||
margin-left: 25vw;
|
||||
margin-right: 25vw;
|
||||
margin-top: 5vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.audioPlayer
|
||||
{
|
||||
background-color: rgb(43, 80, 201);
|
||||
display: flex;
|
||||
border: black solid 5px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.playButton
|
||||
{
|
||||
margin: 1vw;
|
||||
height: auto;
|
||||
color: black;
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
}
|
||||
|
||||
|
||||
.audioSlider
|
||||
{
|
||||
width: 80%;
|
||||
-webkit-appearance: none;
|
||||
width: 100%;
|
||||
height: 10px;
|
||||
background:rgb(43, 80, 201);
|
||||
background-image: url("../images/bar.png");
|
||||
outline: none;
|
||||
-webkit-transition: .2s;
|
||||
transition: opacity .2s;
|
||||
/* overflow: hidden;*/
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.audioSlider::-webkit-slider-thumb {
|
||||
-webkit-appearance: none;
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
background: #000000;
|
||||
/*box-shadow: -100vw 0px 0px 100vw #000000;*/
|
||||
}
|
||||
|
||||
.audioSlider::-moz-range-thumb {
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
background: #000000;
|
||||
}
|
||||
|
||||
.audioSlider::-moz-range-progress {
|
||||
width: 10px;
|
||||
height: 10px;
|
||||
background: #000000;
|
||||
}
|
||||
|
||||
.timeContainer
|
||||
{
|
||||
margin: auto;
|
||||
margin-left: 1vw;
|
||||
}
|
||||
|
||||
.durationContainer
|
||||
{
|
||||
margin: auto;
|
||||
margin-right: 1vw;
|
||||
}
|
||||
|
||||
.timeSeparator
|
||||
{
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.songTitle
|
||||
{
|
||||
margin-top: 2vh;
|
||||
}
|
||||
|
63
stylesheets/basics.css
Normal file
63
stylesheets/basics.css
Normal file
|
@ -0,0 +1,63 @@
|
|||
html
|
||||
{
|
||||
font-family: 'VT323', monospace;
|
||||
background-color: rgb(43, 80, 201);
|
||||
color: rgb(0, 0, 0);
|
||||
}
|
||||
|
||||
body::-webkit-scrollbar
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
|
||||
#title
|
||||
{
|
||||
margin-left: 10vw;
|
||||
margin-top: 10vh;
|
||||
}
|
||||
|
||||
#mainContent
|
||||
{
|
||||
margin: 20vw;
|
||||
margin-top: 4vh;
|
||||
margin-bottom: 10vw;
|
||||
text-align: center
|
||||
}
|
||||
|
||||
img
|
||||
{
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.imageContainer
|
||||
{
|
||||
width: 25vw;
|
||||
height: 25vw;
|
||||
object-fit: contain;
|
||||
margin: auto;
|
||||
border: solid black 5px;
|
||||
padding: 3px;
|
||||
|
||||
margin-top: 3vw;
|
||||
margin-bottom: 3vw;
|
||||
}
|
||||
|
||||
h1
|
||||
{
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
a:visited, a:link
|
||||
{
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
transition: background-color 0.5s, color 0.5s;
|
||||
}
|
||||
|
||||
a:hover
|
||||
{
|
||||
background-color: black;
|
||||
color: rgb(43, 80, 201);
|
||||
}
|
||||
|
61
stylesheets/mainpage.css
Normal file
61
stylesheets/mainpage.css
Normal file
|
@ -0,0 +1,61 @@
|
|||
html
|
||||
{
|
||||
font-family: 'VT323', monospace;
|
||||
background-color: rgb(43, 80, 201);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
a:link, a:visited
|
||||
{
|
||||
text-decoration: none;
|
||||
color: black;;
|
||||
}
|
||||
|
||||
h1
|
||||
{
|
||||
text-align: center;
|
||||
margin-top: 45vh;
|
||||
margin-bottom: 0;
|
||||
font-size: 4.5rem;
|
||||
|
||||
transition: margin 1s;
|
||||
}
|
||||
|
||||
h2
|
||||
{
|
||||
text-align: center;
|
||||
margin-top: 0;
|
||||
margin-bottom: 5vh;
|
||||
}
|
||||
|
||||
|
||||
#menu
|
||||
{
|
||||
text-align: center;
|
||||
display: flexbox;
|
||||
font-size: 0;
|
||||
justify-content: center;
|
||||
|
||||
transition: font-size 1s;
|
||||
}
|
||||
|
||||
a
|
||||
{
|
||||
transition: background-color 0.5s, color 0.5s;
|
||||
}
|
||||
|
||||
a:hover
|
||||
{
|
||||
background-color: black;
|
||||
color: rgb(43, 80, 201);
|
||||
}
|
||||
|
||||
#contactBar
|
||||
{
|
||||
text-align: center;
|
||||
display: flexbox;
|
||||
justify-content: center;
|
||||
font-size: 0;
|
||||
|
||||
transition: font-size 1s;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue