Compare commits
No commits in common. "98de4be854d8f895003aad470d376b25d14a745f" and "fc2094a4324303e4a7f5a1ec19ddbe08ad1c0e5e" have entirely different histories.
98de4be854
...
fc2094a432
6 changed files with 41 additions and 59 deletions
|
@ -1,27 +0,0 @@
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, inital-scale=1">
|
||||
<meta http-equiv="X-UR-Compatible" content='ie=edge'>
|
||||
<title>mskor.xyz</title>
|
||||
<meta name="keywords" content="">
|
||||
<link rel="stylesheet" id="css" href="style.css">
|
||||
<script src="https://unpkg.com/htmx.org@2.0.3" integrity="sha384-0895/pl2MU10Hqc6jd4RvrthNlDiE9U1tWmX7WRESftEDRosgxNsQG/Ze9YMRzHq" crossorigin="anonymous"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="header">
|
||||
<a href="/" hx-target="#content" hx-swap="innerHTML" hx-get="/home">
|
||||
<h1>mskor.xyz</h1>
|
||||
</a>
|
||||
<nav>
|
||||
|
||||
<!--<a href="" hx-target="#content" hx-swap="innerHTML" hx-get="/home" hx-trigger="load">--!>
|
||||
<!--<a href="/" hx-target="#content" hx-swap="innerHTML" hx-get="/about">about</a>-->
|
||||
<a href="/git/explore/repos">git</a>
|
||||
<a href="/home.html">home</a>
|
||||
</nav>
|
||||
</div>
|
||||
<div id="content">
|
||||
i really hope this works
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,27 +1,24 @@
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, inital-scale=1">
|
||||
<meta http-equiv="X-UR-Compatible" content='ie=edge'>
|
||||
<title>mskor.xyz</title>
|
||||
<meta name="keywords" content="">
|
||||
<link rel="stylesheet" id="css" href="style.css">
|
||||
<script src="https://unpkg.com/htmx.org@2.0.3" integrity="sha384-0895/pl2MU10Hqc6jd4RvrthNlDiE9U1tWmX7WRESftEDRosgxNsQG/Ze9YMRzHq" crossorigin="anonymous"></script>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, inital-scale=1">
|
||||
<meta http-equiv="X-UR-Compatible" content='ie=edge'>
|
||||
<title>mskor.xyz</title>
|
||||
<meta name="keywords" content="">
|
||||
<link rel="stylesheet" id="css" href="style.css">
|
||||
<script src="https://unpkg.com/htmx.org@2.0.3" integrity="sha384-0895/pl2MU10Hqc6jd4RvrthNlDiE9U1tWmX7WRESftEDRosgxNsQG/Ze9YMRzHq" crossorigin="anonymous"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div id="header">
|
||||
<a href="/" hx-target="#content" hx-swap="innerHTML" hx-get="/home">
|
||||
<h1>mskor.xyz</h1>
|
||||
</a>
|
||||
<nav>
|
||||
|
||||
<!--<a href="" hx-target="#content" hx-swap="innerHTML" hx-get="/home" hx-trigger="load">--!>
|
||||
<!--<a href="/" hx-target="#content" hx-swap="innerHTML" hx-get="/about">about</a>-->
|
||||
<a href="/git/explore/repos">git</a>
|
||||
<a href="/blog.html">blog</a>
|
||||
</nav>
|
||||
</div>
|
||||
<div id="content">
|
||||
Under construction!
|
||||
</div>
|
||||
<div id="header">
|
||||
<a href="" hx-target="#content" hx-swap="innerHTML" hx-get="/home" hx-trigger="load">
|
||||
<h1>mskor.xyz</h1>
|
||||
</a>
|
||||
<nav>
|
||||
<a href="" hx-target="#content" hx-swap="innerHTML" hx-get="/about">about</a>
|
||||
<a href="/git">git</a>
|
||||
<a href="" hx-target="#content" hx-swap="innerHTML" hx-get="/blog">blog</a>
|
||||
</nav>
|
||||
</div>
|
||||
<div id="content">
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
BIN
src/public/logo.png
Normal file
BIN
src/public/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 454 KiB |
|
@ -1,16 +1,15 @@
|
|||
|
||||
body {
|
||||
margin:0px auto;
|
||||
max-width:700px;
|
||||
max-width:70%;
|
||||
margin:40px auto;
|
||||
font-size:18px;
|
||||
line-height:1.4;
|
||||
padding:10px;
|
||||
padding:0 10px;
|
||||
font-family: monospace;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration:none;
|
||||
color:MediumSeaGreen;
|
||||
color:Black;
|
||||
}
|
||||
|
||||
td {
|
||||
|
@ -23,16 +22,29 @@ h1 {
|
|||
margin:0px auto;
|
||||
}
|
||||
|
||||
#header, #content {
|
||||
padding:0 0px;
|
||||
margin:5px auto;
|
||||
}
|
||||
|
||||
img {
|
||||
width:100%;
|
||||
height:100%;
|
||||
}
|
||||
|
||||
#header {
|
||||
position:relative;
|
||||
padding:5px;
|
||||
background-color:#123;
|
||||
top:0px;
|
||||
}
|
||||
|
||||
#header img {
|
||||
float:left;
|
||||
display:block;
|
||||
width:25%;
|
||||
height:25%;
|
||||
top:0px;
|
||||
object-fit:scale-down;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@media (prefers-color-scheme:dark) {
|
||||
body {
|
||||
background-color:#222;
|
||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue