Skip to content

Commit

Permalink
Align + Fix side elements (links+email)
Browse files Browse the repository at this point in the history
  • Loading branch information
TriFoxie committed Nov 28, 2024
1 parent 29f9b14 commit b675eb4
Showing 1 changed file with 41 additions and 17 deletions.
58 changes: 41 additions & 17 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<!DOCTYPE html>
<head>
<title>TriFoxie</title>
<script src="https://kit.fontawesome.com/5631b092be.js" crossorigin="anonymous"></script>
<style>
:root {
--background_pink: #460046;
Expand All @@ -12,17 +13,21 @@
background-color: var(--background_pink);
color: var(--text_pink);

font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-family: monospace;
}
a, link {
font-weight: bold;
text-decoration: none;
color: var(--light_text_pink);
}
.zoom{
transition: transform .1s;
}
.zoom:hover {
transform: scale(1.5);
transform: scale(1.1);
}
#header {
margin: auto;
position: fixed;
top: 0;
left: 0;
Expand All @@ -31,33 +36,47 @@
padding: 1% 3%;
backdrop-filter: blur(8px);
text-align: right;

button {
background-color: var(--dark_text_pink);
color: var(--background_pink);
border: 2px solid var(--light_text_pink);
transform: rotate(2deg);
font-family:monospace;
font-weight: bold;
font-size: 200%;
padding: 0.1% 2%;
transition: transform .2s;
}
button:hover {
transform: rotate(0deg) scale(1.1);
}
}
#left_menu {
font-family: monospace;
font-size: 120%;
position: fixed;
top: 60%;
bottom: 0;
left: 0;
width: 10%;
padding: 0% 3%;
padding: 0 0 1% 1% ;
z-index: 998;
writing-mode: vertical-lr;
text-orientation: upright;

p {
margin: 0%;
}
}
#email_address {
font-family: monospace;
font-size: 120%;
position: fixed;
bottom: 0;
right: 0;
width: 10%;
padding: 0% 3%;
padding: 0 1% 1% 0 ;
z-index: 998;
writing-mode: vertical-rl;
text-orientation: mixed;
}
#content {
width: 60%;
margin: 10% 0px;
padding: 0px 20%;
text-align: left;
Expand All @@ -68,7 +87,6 @@
font-size: 120%;
margin: 0px;
font-weight: normal;
font-family: monospace;
}
#name {
font-size: 500%;
Expand All @@ -78,30 +96,36 @@
font-size: 400%;
margin: 0px;
color: var(--dark_text_pink);
font-family: monospace;
}
#description {
font-size: 120%;
margin: 0px;
font-weight: normal;
color:var(--dark_text_pink);
font-family: monospace;
}
}
</style>
</head>
<body>
<div>
<div id="header">
<p>Header</p>
<i class="fas fa-3" style="position:fixed;top:0;left:0;padding:1%;scale:200%"></i>
<button>Say Hi</button>
</div>
<div>
<div id="left_menu">
<p>Left Menu</p>
<div class="zoom">
<i class="fa-brands fa-github" href="https://github.com/TriFoxie"></i>
</div>
<div class="zoom">
<i class="fa-brands fa-discord"></i>
</div>
<div class="zoom">
<i class="fa-brands fa-youtube" href="https://youtube.com/@TriFoxie"></i>
</div>
</div>
<div id="email_address">
<div class="zoom" style="float:left"><a href="mailto:[email protected]">[email protected]</a></div>
<p style="float:left">-----</p>
<div class="zoom"><a href="mailto:[email protected]">[email protected]</a></div>
</div>
<div id="content">
<div class="title">
Expand Down

0 comments on commit b675eb4

Please sign in to comment.