Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions 123123.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>

<body>

</body>

</html>
6 changes: 3 additions & 3 deletions test/src/main/webapp/audioTest.html
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ <h1 class="codrops-header__title">HOME</h1>
<div class="wrap__music">
<div class="music__inner">
<div class="music__top">
<i class="material-icons">expand_more</i>
<h3>Now Playing</h3>
<i class="material-icons">more_horiz</i>
<i class="material-icons">expand_more</i>
<h3>1조 플레이어</h3>
<i class="material-icons">more_horiz</i>
</div>
<!-- // music__top -->
<div class="music__img">
Expand Down
2 changes: 1 addition & 1 deletion test/src/main/webapp/css/demo.css
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ main {
padding: 1.5em;
pointer-events: none;
grid-template-columns: 50% 50%;
grid-template-rows: auto auto 4em;
grid-template-rows: auto auto auto;
grid-template-areas: 'header ...'
'... ...'
'github demos';
Expand Down
19 changes: 11 additions & 8 deletions test/src/main/webapp/css/player.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
font-family: 'Poppins';
}
:root {
--pink : #ff74a4;
--violet : #9f6ea3;
--pink : #ffffff;
--violet : #000000;
--white : #fff;
--lightshadow : rgba(0,0,0,0.15);
--lightblack : #515c6f;
Expand All @@ -15,7 +15,7 @@
}
body {
height: 100vh;
background: linear-gradient(var(--pink) 0%, var(--violet) 100%);
background: linear-gradient(var(--pink) 0%, var(--violet) 0%);
}
.wrap__music {
display: flex;
Expand All @@ -30,7 +30,7 @@
overflow: hidden;
position: relative;
border-radius: 15px;
background: var(--white);
background: #ffffffa9;
box-shadow: 0 6px 15px var(--lightshadow);
}
.music__top {
Expand All @@ -41,10 +41,12 @@
.music__top i {
font-size: 30px;
color: var(--lightblack);
align-items: center;
opacity: 0;
}
.music__top h3 {
font-size: 18px;
color: var(--lightblack);
color: #000000;
font-weight: 500;
}
.music__img {
Expand All @@ -54,6 +56,7 @@
border-radius: 15px;
margin-top: 25px;
box-shadow: 0 6px 12px var(--lightshadow);
opacity: 0.5;
}
.music__img img {
width: 100%;
Expand Down Expand Up @@ -142,13 +145,13 @@
}
.music__list {
position: absolute;
background: var(--white);
background: #ffffffd5;
width: 100%;
left: 0; bottom: -400px;
z-index: 10;
border-radius: 15px;
padding: 15px 30px;
box-shadow: 0 -3px 10px rgba(0,0,0,0.1);
box-shadow: 0 -3px 10px rgba(255, 255, 255, 0.842);
transition: all 0.15s ease-out;
opacity: 0;
pointer-events: none;
Expand Down Expand Up @@ -188,7 +191,7 @@
margin-bottom: 5px;
}
.music__list .list > ul > li.playing {
color: var(--pinkshadow);
color: #ff7b00;
}
.music__list .list > ul > li > div em {
font-style: normal;
Expand Down