Overhaul [1/n]

Signed-off-by: Sean Du <do4suki@gmail.com>
This commit is contained in:
2026-01-29 02:42:28 +08:00
parent 989acd6ff1
commit c77241a883
2267 changed files with 7158 additions and 5583 deletions
+80
View File
@@ -0,0 +1,80 @@
@charset "utf-8";
* {
margin: 0;
padding: 0;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-user-select: none;
-webkit-touch-callout: none;
}
body {
box-sizing: border-box;
color: #191919;
font-family: sans-serif;
font-size: 22px;
width: 880px;
-webkit-text-size-adjust : 100%;
}
#body {
height: 542px;
position: relative;
width: 880px;
}
.with-scroll #body {
padding: 0 19px 0 13px;
width: 848px;
}
input, textarea {
-webkit-user-select: auto;
}
.clearfix {
clear: both;
content: ".";
display: block;
font-size: 0;
height: 0;
visibility: hidden;
}
.border1 {
background-image: url("../../img/common/border1.png?r=20220516");
background-position: center center;
background-repeat: no-repeat;
height: 34px;
min-width: 500px;
}
.table {
border-collapse: collapse;
margin: 10px;
}
.table th, .table td {
border: 1px solid #fc6399;
padding: 2px 5px;
}
.table th {
background-color: lightpink;
}
.table.table-striped > tbody > tr:nth-child(odd) {
background-color: white;
}
.table.table-striped > tbody > tr:nth-child(even) {
background-color: lightgray;
}
ul, ol, dl {
margin: 5px 0;
}
li {
margin-left: 1em;
}
File diff suppressed because one or more lines are too long
+31
View File
@@ -0,0 +1,31 @@
.ps__rail-x,
.ps__rail-y {
background-color: #ffd0e8 !important;
border-radius: 10px !important;
display: block !important;
opacity: 0.8 !important;
}
.ps__rail-x {
height: 6px !important;
}
.ps__rail-y {
width: 6px !important;
}
.ps__thumb-x,
.ps__thumb-y {
background-color: #ff80af !important;
border-radius: 10px !important;
opacity: 0.8 !important;
}
.ps__thumb-x {
height: 6px !important;
bottom: 0;
}
.ps__thumb-y {
width: 6px !important;
right: 0;
}
+116
View File
@@ -0,0 +1,116 @@
/*
* Container style
*/
.ps {
overflow: hidden !important;
overflow-anchor: none;
-ms-overflow-style: none;
touch-action: auto;
-ms-touch-action: auto;
}
/*
* Scrollbar rail styles
*/
.ps__rail-x {
display: none;
opacity: 0;
transition: background-color .2s linear, opacity .2s linear;
-webkit-transition: background-color .2s linear, opacity .2s linear;
height: 15px;
/* there must be 'bottom' or 'top' for ps__rail-x */
bottom: 0px;
/* please don't change 'position' */
position: absolute;
}
.ps__rail-y {
display: none;
opacity: 0;
transition: background-color .2s linear, opacity .2s linear;
-webkit-transition: background-color .2s linear, opacity .2s linear;
width: 15px;
/* there must be 'right' or 'left' for ps__rail-y */
right: 0;
/* please don't change 'position' */
position: absolute;
}
.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
display: block;
background-color: transparent;
}
.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
opacity: 0.6;
}
.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
background-color: #eee;
opacity: 0.9;
}
/*
* Scrollbar thumb styles
*/
.ps__thumb-x {
background-color: #aaa;
border-radius: 6px;
transition: background-color .2s linear, height .2s ease-in-out;
-webkit-transition: background-color .2s linear, height .2s ease-in-out;
height: 6px;
/* there must be 'bottom' for ps__thumb-x */
bottom: 2px;
/* please don't change 'position' */
position: absolute;
}
.ps__thumb-y {
background-color: #aaa;
border-radius: 6px;
transition: background-color .2s linear, width .2s ease-in-out;
-webkit-transition: background-color .2s linear, width .2s ease-in-out;
width: 6px;
/* there must be 'right' for ps__thumb-y */
right: 2px;
/* please don't change 'position' */
position: absolute;
}
.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
background-color: #999;
height: 11px;
}
.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
background-color: #999;
width: 11px;
}
/* MS supports */
@supports (-ms-overflow-style: none) {
.ps {
overflow: auto !important;
}
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
.ps {
overflow: auto !important;
}
}
+97
View File
@@ -0,0 +1,97 @@
@charset "utf-8";
#list-container {
width: 386px;
height: 536px;
background-image: url("/static/images/bg-left.png");
background-repeat: no-repeat;
float: left;
}
h2 {
height: 76px;
margin: 16px auto 14px;
}
h2>img {
display: block;
height: 76px;
margin: auto;
}
#list-scroll {
height: 410px;
width: 363px;
margin-left: 8px;
position: relative;
}
li {
text-align: left;
background-image: url("/static/images/list-content-bg.png");
font-size: 18px;
width: 330px;
height: 58px;
margin: 0 0 8px 8px;
list-style-type: none;
position: relative;
}
li.tapped {
background-image: url("/static/images/list-content-bg-on.png");
}
li p {
color: #fff;
padding: 16px 8px 8px 50px;
}
.new-icon {
background-image: url("/static/images/new-icon.png");
width: 50px;
height: 50px;
position: absolute;
left: -4px;
}
#image-container {
float: left;
background-image: url("/static/images/bg-right.png");
background-repeat: no-repeat;
width: 490px;
height: 536px;
margin-left: 4px;
position: relative;
}
#image-scroll {
width: 454px;
height: 500px;
margin: 20px 0 0 16px;
position: relative;
}
#large-image-container {
display: none;
position: absolute;
left: 5px;
top: 6px;
width: 855px;
height: 488px;
background-color: white;
box-shadow: 10px 10px 5px rgba(51, 51, 51, 0.5);
border-radius: 20px;
border: 2px solid dimgray;
padding: 15px 0;
}
#large-image-scroll {
position: relative;
width: 850px;
height: 488px;
padding: 0 -17px;
}
#large-image {
margin: auto;
}
+77
View File
@@ -0,0 +1,77 @@
@charset "utf-8";
#outer {
background-color: white;
border: 2px solid white;
border-radius: 14px;
box-shadow: 3px 3px 0 0 #cecccd;
display: block;
height: 529px;
margin: 0 3px 3px 0;
width: 873px;
}
#inner {
border: 2px solid #fc6399;
border-radius: 12px;
height: 525px;
width: 869px;
}
#header {
margin-bottom: -3px;
padding: 3px;
position: relative;
}
.no-header #header {
display: none;
}
h1 {
background-color: #fc6399;
border-radius: 9px;
color: white;
font-size: 32px;
font-weight: bold;
height: 57px;
line-height: 57px;
padding: 0 9px 0 44px;
width: 810px;
}
.no-back h1 {
padding-left: 15px;
width: 839px;
}
#back {
background-image: url("../../img/common/button_back.png");
background-repeat: no-repeat;
background-size: contain;
left: 7px;
height: 40px;
position: absolute;
top: 11px;
width: 40px;
}
#back.tapped {
background-image: url("../../img/common/button_back_se.png");
}
.no-back #back {
display: none;
}
#body {
height: 455px;
margin: 5px 3px 5px;
padding: 0 19px 0 13px;
position: relative;
width: 831px;
}
.no-header #body {
height: 515px;
}