-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
68eb6c5
commit d6869d4
Showing
32 changed files
with
734 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
* | ||
!docs/ | ||
!docs/** | ||
!README.md | ||
!.gitignore | ||
docs/*.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
Oops, something went wrong.