add prompt js page

This commit is contained in:
2024-09-25 08:56:20 +08:00
parent d53c18606e
commit 3da62fd254
26 changed files with 436 additions and 115 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,64 @@
/* #### Generated By: http://www.cufonfonts.com #### */
@font-face {
font-family: 'D-DIN';
font-style: normal;
font-weight: normal;
src: url('D-DIN.woff') format('woff');
}
@font-face {
font-family: 'D-DIN-Italic';
font-style: italic;
font-weight: normal;
src: url('D-DIN-Italic.woff') format('woff');
}
@font-face {
font-family: 'D-DIN-Bold';
font-style: normal;
font-weight: bold;
src: url('D-DIN-Bold.woff') format('woff');
}
@font-face {
font-family: 'D-DIN Condensed';
font-style: normal;
font-weight: normal;
src: url('D-DINCondensed.woff') format('woff');
}
@font-face {
font-family: 'D-DIN Exp';
font-style: normal;
font-weight: normal;
src: url('D-DINExp.woff') format('woff');
}
@font-face {
font-family: 'D-DIN Exp-Italic';
font-style: italic;
font-weight: normal;
src: url('D-DINExp-Italic.woff') format('woff');
}
@font-face {
font-family: 'D-DIN Condensed-Bold';
font-style: normal;
font-weight: bold;
src: url('D-DINCondensed-Bold.woff') format('woff');
}
@font-face {
font-family: 'D-DIN Exp-Bold';
font-style: normal;
font-weight: bold;
src: url('D-DINExp-Bold.woff') format('woff');
}

View File

@@ -0,0 +1,16 @@
/* #### Generated By: http://www.cufonfonts.com #### */
@font-face {
font-family: 'Montserrat';
font-style: normal;
font-weight: 100 900;
src: url('Montserrat-VariableFont_wght.ttf') format('truetype');
}
@font-face {
font-family: 'Montserrat-Italic';
font-style: italic;
font-weight: 100 900;
src: url('Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
}

View File

@@ -0,0 +1,6 @@
@font-face {
font-family: 'Orbitron';
font-style: normal;
font-weight: 400 900;
src: url('Orbitron-VariableFont_wght.ttf') format('truetype');
}

View File

@@ -0,0 +1,3 @@
@import "./D-DIN/font.css";
@import "./Montserrat/font.css";
@import "./Orbitron/font.css";

View File

@@ -1,3 +1,5 @@
@import './fonts/font.css';
.scrollbar {
/* 整个滚动条 */
&::-webkit-scrollbar {
@@ -14,7 +16,7 @@
/* 滚动条滑块(竖向:vertical 横向:horizontal) */
&::-webkit-scrollbar-thumb {
cursor: pointer;
background-color: black;
background-color: #c1c1c1;
border-radius: 5px;
}