feat: proper base website
This commit is contained in:
parent
566c26dcd9
commit
bf77798954
BIN
assets/circles-white.png
Normal file
BIN
assets/circles-white.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 351 KiB |
34
index.html
34
index.html
|
@ -2,11 +2,43 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>Devraza</title>
|
<title>Devraza</title>
|
||||||
|
<meta charset="utf-8">
|
||||||
<link rel="stylesheet" href="./style.css">
|
<link rel="stylesheet" href="./style.css">
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
Something will arise...dd
|
<div>
|
||||||
|
<img class="logo" src="./assets/circles-white.png" alt="Logo">
|
||||||
|
<h1 class="devraza">Devraza</h1>
|
||||||
|
|
||||||
|
<p class="description">Programming and cybersecurity</h1>
|
||||||
|
|
||||||
|
<hr class="hr-sm">
|
||||||
|
|
||||||
|
<h3>Things I use</h3>
|
||||||
|
<div class="stack">
|
||||||
|
<a>Linux</a>
|
||||||
|
<a>Rust</a>
|
||||||
|
<a>Go</a>
|
||||||
|
<a>Lua</a>
|
||||||
|
<a>Python</a>
|
||||||
|
<a>Nix</a>
|
||||||
|
<a>Inkscape</a>
|
||||||
|
<a>GIMP</a>
|
||||||
|
<a>Kali Linux</a>
|
||||||
|
<a>NeoVim</a>
|
||||||
|
<a>Git</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<hr class="hr-sm">
|
||||||
|
|
||||||
|
<h3>Links</h3>
|
||||||
|
<div class="links">
|
||||||
|
<a href="https://git.devraza.duckdns.org/devraza" target="_blank">Gitea</a>
|
||||||
|
<a href="https://github.com/devraza" target="_blank">GitHub</a>
|
||||||
|
<a href="mailto:devraza@outlook.com">E-mail</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
60
style.css
60
style.css
|
@ -1,3 +1,61 @@
|
||||||
body {
|
body {
|
||||||
color: black;
|
background-color: #151517;
|
||||||
|
color: #ece5ea;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.logo {
|
||||||
|
display: block;
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
margin-top: 7%;
|
||||||
|
width: 20rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.devraza {
|
||||||
|
margin-top: 20px;
|
||||||
|
margin-bottom: 0;
|
||||||
|
font-size: 70pt;
|
||||||
|
text-align: center;
|
||||||
|
font-weight: 900;
|
||||||
|
}
|
||||||
|
|
||||||
|
.description {
|
||||||
|
text-align: center;
|
||||||
|
color: #a292e8;
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.stack {
|
||||||
|
text-align: center;
|
||||||
|
margin-bottom: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.links {
|
||||||
|
margin-top: 20px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hr-xl {
|
||||||
|
width: 40%;
|
||||||
|
border-color: #454449;
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hr-sm {
|
||||||
|
width: 30%;
|
||||||
|
border-color: #454449;
|
||||||
|
margin-top: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
background-color: #242426;
|
||||||
|
padding: 10px;
|
||||||
|
color: #7ee6ae;
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
color: #e887bb;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue