stuff
This commit is contained in:
parent
81c34d6c3d
commit
eda0b2f9e8
5 changed files with 29 additions and 6 deletions
|
@ -11,9 +11,8 @@
|
||||||
<div class="window">
|
<div class="window">
|
||||||
<div class="nav">
|
<div class="nav">
|
||||||
<button onclick="loadContent('home.md')">Home</button>
|
<button onclick="loadContent('home.md')">Home</button>
|
||||||
<button onclick="loadContent('about.md')">About</button>
|
<a href="./logs/"><button>Logs</button></a>
|
||||||
<button onclick="loadContent('contact.md')">Contact</button>
|
<a href="./grimoire/"><button>Grimoire</button></a>
|
||||||
<button>Grimoire</button>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="content" id="mainContent">
|
<div class="content" id="mainContent">
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
# Library
|
# Library
|
||||||
|
|
||||||
|

|
BIN
home/library/static/bg.jpg
(Stored with Git LFS)
Normal file
BIN
home/library/static/bg.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
BIN
home/library/static/frieren.jpg
(Stored with Git LFS)
Normal file
BIN
home/library/static/frieren.jpg
(Stored with Git LFS)
Normal file
Binary file not shown.
|
@ -5,7 +5,10 @@ body {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
background-color: #f0f0f0;
|
background-color: #211000;
|
||||||
|
background-image: url("./static/bg.jpg");
|
||||||
|
background-position: center;
|
||||||
|
background-repeat: no-repeat;
|
||||||
}
|
}
|
||||||
.window {
|
.window {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -36,9 +39,12 @@ body {
|
||||||
color: white;
|
color: white;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: background-color 0.3s;
|
transition: background-color 0.3s;
|
||||||
|
transform: 0.3s;
|
||||||
|
|
||||||
}
|
}
|
||||||
.nav button:hover {
|
.nav button:hover {
|
||||||
background-color: #1abc9c;
|
background-color: #c2a25e;
|
||||||
|
transform: scale(1.05) rotate(1deg);
|
||||||
}
|
}
|
||||||
.content {
|
.content {
|
||||||
width: 75%;
|
width: 75%;
|
||||||
|
@ -46,4 +52,15 @@ body {
|
||||||
border-top-right-radius: 8px;
|
border-top-right-radius: 8px;
|
||||||
border-bottom-right-radius: 8px;
|
border-bottom-right-radius: 8px;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.content img {
|
||||||
|
max-width: 100%;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Move when clicked */
|
||||||
|
.nav button:active {
|
||||||
|
transform: scale(1.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue