Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
qDread-dev authored Dec 12, 2023
1 parent 0dabf8b commit 2112aaf
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Bio

Personal site
48 changes: 48 additions & 0 deletions css/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
:root {
--primary-color: #9b59b6;
--secondary-color: #34495e;
--background-color: #2c3e50;
--text-color: #ecf0f1;
}

body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background-color: var(--background-color);
color: var(--text-color);
}

#wrapper {
display: flex;
padding: 10px;
border-radius: 10px;
justify-content: space-between;
align-items: center;
background-color: #2a2c2f;
color: var(--text-color);
}

#icon-wrapper {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
flex-grow: 1;
gap: 20px;
margin-left: 10px; /* Same as the padding of the #wrapper */
color: var(--primary-color);
}

#status {
display: inline-block;
color: var(--primary-color);
color: var(--primary-color);
}


.fab {
font-size: 50px;
}
17 changes: 17 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./css/index.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body>
<div id="wrapper">
<img id="status" src="https://lanyard.cnrad.dev/api/587326588086124585?idleMessage=Sleeping%20(for%20once)"/>
<div id="icon-wrapper">
<i class="fab fa-github"></i>
<i class="fab fa-youtube"></i>
<i class="fab fa-steam"></i>
</div>
</div>
</body>
</html>

0 comments on commit 2112aaf

Please sign in to comment.