Merge branch 'main' of github.com:MCorange99/personal_website
This commit is contained in:
commit
3c34a5e407
BIN
static/assets/bg.gif
Normal file
BIN
static/assets/bg.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
1
static/assets/placeholder.txt
Normal file
1
static/assets/placeholder.txt
Normal file
|
@ -0,0 +1 @@
|
||||||
|
|
89
static/global.css
Normal file
89
static/global.css
Normal file
|
@ -0,0 +1,89 @@
|
||||||
|
body {
|
||||||
|
|
||||||
|
background: url(/static/assets/bg.gif);
|
||||||
|
color: white;
|
||||||
|
font-family: monospace;
|
||||||
|
height: 100vh;
|
||||||
|
margin: 0;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.titlebar {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.box {
|
||||||
|
|
||||||
|
background: rgba(0, 0, 0, 0.8);
|
||||||
|
border: 2px solid purple;
|
||||||
|
padding: 10px;
|
||||||
|
box-sizing: border-box;
|
||||||
|
text-align: center;
|
||||||
|
width: 100%;
|
||||||
|
margin: 5px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
a:link {
|
||||||
|
|
||||||
|
color: purple;
|
||||||
|
text-decoration: none;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#content {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#main-pane {
|
||||||
|
width: 100%;
|
||||||
|
padding: 10px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
}
|
||||||
|
|
||||||
|
#content-pane, #sidenav {
|
||||||
|
height: 80vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
#sidenav {
|
||||||
|
|
||||||
|
width: 25%;
|
||||||
|
font-size: 12pt;
|
||||||
|
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 1080px) {
|
||||||
|
#content {
|
||||||
|
width: 90%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#main-pane {
|
||||||
|
|
||||||
|
flex-direction: column;
|
||||||
|
width: 96%;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#content-pane, #sidenav {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
#sidenav {
|
||||||
|
|
||||||
|
flex-direction: row;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#sidenav a {
|
||||||
|
|
||||||
|
margin-left: 10px;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -1,20 +1,47 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html>
|
||||||
<head>
|
|
||||||
<title>Document</title>
|
<head>
|
||||||
<meta charset="UTF-8">
|
|
||||||
|
<title>placeholder</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<!-- <script src="https://unpkg.com/htmx.org@1.9.11"></script> -->
|
<link rel="stylesheet" href="static/global.css">
|
||||||
</head>
|
|
||||||
<body>
|
</head>
|
||||||
<div id="nav">
|
|
||||||
<a class="nav-logo" href="#home"> <img src="/static/logo.svg" alt="Website Logo"> </a>
|
<body>
|
||||||
<a class="nav-btn nav-btn-active" href="#home">Home</a>
|
|
||||||
<a class="nav-btn" href="#projects">Projects</a>
|
<div id="content">
|
||||||
<a class="nav-btn" href="#contact">Contact</a>
|
|
||||||
<a class="nav-btn" href="#supportme">Support Me</a>
|
<div class="box titlebar">
|
||||||
|
|
||||||
|
<h1>Placeholder</h1>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- <h1>{{placeholder}}</h1> -->
|
|
||||||
</body>
|
|
||||||
|
<div id="main-pane">
|
||||||
|
|
||||||
|
|
||||||
|
<div class="box" id="sidenav">
|
||||||
|
|
||||||
|
<a href="#">Home</a>
|
||||||
|
<a href="#">Home</a>
|
||||||
|
<a href="#">Home</a>
|
||||||
|
<a href="#">Home</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="box" id="content-pane">
|
||||||
|
|
||||||
|
<p>{{placeholder}}</p>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue
Block a user