Skip to content
This repository has been archived by the owner on Jul 16, 2020. It is now read-only.

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
更新界面颜色
优化代码
  • Loading branch information
YuzukiTsuru committed Jun 7, 2019
1 parent 9ddbdb7 commit 53503af
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 35 deletions.
59 changes: 26 additions & 33 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,16 @@
margin: 0;
padding: 0;
font-family: 微软雅黑;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}

html {
overflow: hidden;
}


/* 隐藏滚动条 */

::-webkit-scrollbar {
Expand Down Expand Up @@ -46,8 +49,7 @@ input[type="range"]::-webkit-slider-thumb {
top: 0;
}

#file-list-wrapper,
#effect-list-wrapper {
#file-list-wrapper, #effect-list-wrapper {
position: fixed;
width: 200px;
top: 0;
Expand All @@ -72,45 +74,43 @@ input[type="range"]::-webkit-slider-thumb {
border-color: #202020;
}

#file-list-wrapper .header,
#effect-list-wrapper .header {
#file-list-wrapper .header, #effect-list-wrapper .header {
padding: 15px;
font-size: 20px;
color: #888;
color: rgb(255, 255, 255);
text-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
border-bottom: 1px solid #202020;
box-shadow: 0 0 5px #000, inset 0 0 5px rgba(255, 255, 255, 0.2);
text-align: center;
background-color: #404040;
background-color: #1de9b6;
cursor: default;
}

#add-file{
#add-file {
padding: 15px;
font-size: 20px;
color: #888;
color: rgb(255, 255, 255);
text-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
border-bottom: 1px solid #202020;
box-shadow: 0 0 5px #000, inset 0 0 5px rgba(255, 255, 255, 0.2);
text-align: center;
background-color: #404040;
cursor: default;
background-color: #00b686;
cursor: pointer;
}

#close-btn{
#close-btn {
padding: 15px;
font-size: 20px;
color: #888;
color: #fff;
text-shadow: 0 0 2px rgba(0, 0, 0, 0.7);
border-bottom: 1px solid #202020;
box-shadow: 0 0 5px #000, inset 0 0 5px rgba(255, 255, 255, 0.2);
text-align: center;
background-color: #404040;
cursor: default;
background-color: #ff8585;
position: absolute;
bottom: 0;
width: 170px;
cursor: pointer;
}

#file-list,
#effect-list {
#file-list, #effect-list {
width: 200px;
overflow-y: auto;
overflow-x: hidden;
Expand Down Expand Up @@ -158,12 +158,10 @@ input[type="range"]::-webkit-slider-thumb {

#file-list .playing {
color: #fff;
background-color: #30ABD5 !important;
box-shadow: inset 0 0 3px rgba(0, 0, 0, 1) !important;
background-color: #00beff;
}

#fullscreen,
#play-mode {
#fullscreen, #play-mode {
position: fixed;
width: 50px;
height: 50px;
Expand All @@ -174,8 +172,7 @@ input[type="range"]::-webkit-slider-thumb {
z-index: 2;
}

#fullscreen:hover,
#play-mode:hover {
#fullscreen:hover, #play-mode:hover {
opacity: 1;
}

Expand Down Expand Up @@ -228,8 +225,6 @@ input[type="range"]::-webkit-slider-thumb {
width: 100%;
height: 100%;
background-color: #373939;
box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0));
}

#music {
Expand Down Expand Up @@ -257,7 +252,7 @@ input[type="range"]::-webkit-slider-thumb {
background-position: 0 -50px;
}

#play-mode .single {
#play-mode.single {
background-position: 0 -100px;
}

Expand Down Expand Up @@ -290,9 +285,7 @@ input[type="range"]::-webkit-slider-thumb {
cursor: pointer;
}

#visual-canvas,
#threed-webgl-renderer,
#threed-canvas-renderer {
#visual-canvas, #threed-webgl-renderer, #threed-canvas-renderer {
position: fixed;
width: 100%;
height: 100%;
Expand Down Expand Up @@ -370,4 +363,4 @@ input[type="range"]::-webkit-slider-thumb {
100% {
-webkit-transform: scale(1);
}
}
}
Binary file removed img/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<head>
<meta charset="utf-8">
<link rel="shortcut icon" href="img/favicon.ico">
<link rel="shortcut icon" href="img/logo.png">
<link rel="stylesheet" href="css/style.css">
</head>

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "promotion-video-producer",
"version": "0.0.2",
"version": "0.0.3",
"description": "Promotion Video Producer(a.k.a PVMaker & PV制作器) Is a software that generates music MV for Vocaloid like art work",
"main": "main.js",
"dependencies": {
Expand Down

0 comments on commit 53503af

Please sign in to comment.