Initial commit

This commit is contained in:
nin0dev 2024-05-10 17:31:20 -04:00
commit e1c93f4ce3
3 changed files with 60 additions and 0 deletions

24
index.html Normal file
View file

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HTML 5 Boilerplate</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://unpkg.com/98.css">
</head>
<body>
<div class="window" id="main-window">
<div class="title-bar">
<div class="title-bar-text">Home</div>
</div>
<div class="window-body">
<div id="header">
<img src="logo.png" alt="the nin0dev logo" id="pfp">
<h3>nin0dev</h3>
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>

BIN
logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

36
style.css Normal file
View file

@ -0,0 +1,36 @@
:root {
--online-color: #23a55a;
--idle-color: #f0b232;
--dnd-color: #f23f43;
--offline-color: #80848e;
}
body {
background-color: #003D3D;
padding: 30px;
}
#main-window {
max-width: 600px;
}
.window {
background-color: #202020 !important;
color: white;
box-shadow: inset -1px -1px #0a0a0a,inset 1px 1px #404040,inset -2px -2px grey,inset 2px 2px #202020 !important;
}
.window-body {
padding: 10px;
}
#header {
display: flex;
}
#header h3 {
font-size: xx-large;
font-weight: 400;
margin-left: 20px;
}
#pfp {
width: 90px;
border-radius: 3px;
border-color: var(--offline-color);
border-style: solid;
border-width: 2px;
}