-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0dabf8b
commit 2112aaf
Showing
3 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Bio | ||
|
||
Personal site |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |