Skip to content

Commit

Permalink
Regular upload
Browse files Browse the repository at this point in the history
  • Loading branch information
zichongxu-ustc committed Oct 4, 2024
1 parent 68eb6c5 commit d6869d4
Show file tree
Hide file tree
Showing 32 changed files with 734 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
*
!docs/
!docs/**
!README.md
!.gitignore
docs/*.txt
33 changes: 33 additions & 0 deletions docs/42f4a51afd40a17f3b78.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
.container {
display: block;
transition: all .3s ease;
flex: 1;
margin: 20px 20px;
margin-left: calc(var(--sidebar-width) + 20px);
align-items: center;
min-width: 200px;
}

.textbox {
width: 100%;
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0px 0px 4px 0px #000;
display: grid;
word-wrap: break-word;
overflow-wrap: break-word;
/* overflow: auto; */
}

.img {
display: inline-block;
margin: 10px;
}

.text>p {
height: auto;
/* width: 100%; */
word-wrap: break-word;
white-space: normal;
}
17 changes: 17 additions & 0 deletions docs/61067744951d9cdb73d7.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@





.container{
margin-right: 200px !important;
}
.table-container{
width: 160px;
background-color: aliceblue;
display: inline-block;
position: absolute;
top:20vh;
right: 20px;
}

225 changes: 225 additions & 0 deletions docs/674d33f28592956e72e2.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,225 @@
.nano {
overflow: hidden;
}

.nano>.nano-content {
overflow: auto;
}

.nano>.nano-pane {
background: #ffffff00;
width : 12px;
height : 92%;
top : 4%;
}

.nano>.nano-pane>.nano-slider {
background: #555555;
width : 10px;
}
/** initial setup **/
.nano {
position : relative;
overflow : hidden;
}
.nano > .nano-content {
overflow : auto;
overflow-x : hidden;
}
.nano > .nano-content:focus {
outline: thin dotted;
}
.nano > .nano-content::-webkit-scrollbar {
display: none;
}
.has-scrollbar > .nano-content::-webkit-scrollbar {
display: block;
}
.nano > .nano-pane {
background : rgba(0,0,0,.25);
position : absolute;
width : 10px;
height : 92%;
right : 0;
top : 4%;
bottom : 0;
visibility : hidden\9; /* Target only IE7 and IE8 with this hack */
opacity : .01;
-webkit-transition : .2s;
-moz-transition : .2s;
-o-transition : .2s;
transition : .2s;
-moz-border-radius : 5px;
-webkit-border-radius: 5px;
border-radius : 10px;
background : #ffffff;
}
.nano > .nano-pane > .nano-slider {
position : relative;
margin : 0 auto;
-moz-border-radius : 3px;
-webkit-border-radius: 3px;
border-radius : 10px;
background : #3a4a6d;
width : 10px;
}
.nano:hover > .nano-pane, .nano-pane.active, .nano-pane.flashed {
visibility : visible\9; /* Target only IE7 and IE8 with this hack */
opacity : 0.99;
}

:root {
--body-color: #fff;
--shell-color: #f5f5f5;
--primary-color: #f5f5f5;
--primary-color-light: #f5f5f5;
--toggle-color: #787878;
--text-color: #000000;
--sidebar-width:150px;
}

.dark {
--body-color: #333;
--shell-color: #333;
--primary-color: #333;
--primary-color-light: #333;
--toggle-color: #333;
--text-color: #333;
}


a {
text-decoration: none;
color: inherit;
}

.sidebar-for-window {
/* flex:0 1 200px; */
position: fixed;
display: flex;
top: 0;
left: 0;
width: var(--sidebar-width);
height: 100vh;
/* padding: 10px 14px; */
background: var(--shell-color);
transition: all .3s ease;
z-index: 100;
flex-direction: column;
}

/* .sidebar-for-window li:hover {
background-color: var(--toggle-color);
} */


.sidebar-for-window li {
width: 100%;
text-align: center;
line-height: 50px;
margin: 0;
display: block;
margin: 0;
padding: 0;
}


.checkbox {
position: absolute;
top: 50%;
right: 0;
transform: translateX(50%);
width: 30px;
height: 30px;
border-radius: 20px;
box-shadow: 0px 0px 4px 0px #000;
background-color: var(--text-color);
color: var(--font-color-mi);
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
z-index: 9999;
}

.sidebar-contain {
height: 100%;
width: 100%;
display: flex;
flex-wrap: wrap;
align-items: flex-start;
}

.logo {
width: 100%;
height: 80px;
display: flex;
align-items: center;
justify-content: center;
/* flex-direction: column; */
}

.search-box {
height: auto;
width: 100%;
}

.sidebar-itembox {
width: 100%;
height: 100%;
margin: 0;
border: 5px;
}

.bottom-contain {
height: 60px;
margin-top: auto;
}

.nav-bar {
width: 100%;
height: 100%;
display: none;
flex-direction: column;
}





.icon {
min-width: 60px;
border-radius: 6px;
/* height: 100%; */
display: flex;
align-items: center;
justify-content: center;
font: 300 23px;
}

.text {
font: 500 17px;
white-space: nowrap;
opacity: 1;
}

.text,
.icon {
color: var(--text-color);
transition: all .3s ease;
}

.close .text {
opacity: 0;
}

header {
position: relative;
}




/* li {
display: none;
} */
46 changes: 46 additions & 0 deletions docs/836e23d22ddda2af6b8d.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
.memberbox {
/* text-align: right; */
}

.title {
margin: 20px;
text-align: center;
}

.member-container {
display: inline-block;
text-align: center;
}

.member-photo-container {
margin: 20px;
height: 100px;
width: 100px;
border-radius: 50%;
border: 5px solid #f5f5f5;
overflow: hidden;
transition: all 1s ease;
}

.member-photo {
width: 100%;
height: 100%;
}

.member-name {
display: block;
}

.introduction {
display: none;
}

.expanded {
transition: all 1s linear;
position: absolute;
/* justify-content: center;
align-items: center; */
/* left: calc((100vw - var(--sidebar-width))/2);
top: 50%; */
transform: scale(2);
}
5 changes: 5 additions & 0 deletions docs/87628c7fd3f5cafa0d98.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@





9 changes: 9 additions & 0 deletions docs/Reference.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!doctype html><html lang="zh"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><title>Document</title><style>* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
transition: all .3s ease;
background-color: #848484;
}</style><script defer="defer" src="sidebar.4f785be58b21678fe15a.js"></script><script defer="defer" src="textboxcss.31d6cfe0d16ae931b73c.js"></script><link href="674d33f28592956e72e2.css" rel="stylesheet"><link href="ee3829554cf52637f012.css" rel="stylesheet"></head><body>hello</body></html>
9 changes: 9 additions & 0 deletions docs/attribution.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!doctype html><html lang="zh"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><title>Document</title><style>* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
transition: all .3s ease;
background-color: #848484;
}</style><script defer="defer" src="future.31d6cfe0d16ae931b73c.js"></script><script defer="defer" src="sidebar.4f785be58b21678fe15a.js"></script><script defer="defer" src="textboxcss.31d6cfe0d16ae931b73c.js"></script><link href="674d33f28592956e72e2.css" rel="stylesheet"><link href="ee3829554cf52637f012.css" rel="stylesheet"></head><body>hello</body></html>
9 changes: 9 additions & 0 deletions docs/background.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!doctype html><html lang="zh"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1"/><title>Document</title><style>* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
transition: all .3s ease;
background-color: #848484;
}</style><script defer="defer" src="sidebar.4f785be58b21678fe15a.js"></script><script defer="defer" src="textboxcss.31d6cfe0d16ae931b73c.js"></script><link href="674d33f28592956e72e2.css" rel="stylesheet"><link href="ee3829554cf52637f012.css" rel="stylesheet"></head><body>hello</body></html>
Loading

0 comments on commit d6869d4

Please sign in to comment.