Beta Primary
1
ALPHA/.htaccess
Normal file
|
@ -0,0 +1 @@
|
||||||
|
ErrorDocument 404 /error404.html
|
|
@ -8,7 +8,7 @@
|
||||||
</title>
|
</title>
|
||||||
|
|
||||||
<!-- add icon link -->
|
<!-- add icon link -->
|
||||||
<link rel = "icon" href = "assets/branding/obo-icon.png"
|
<link rel = "icon" href = "assets/obo-icon.png"
|
||||||
type = "image/x-icon">
|
type = "image/x-icon">
|
||||||
<style>
|
<style>
|
||||||
*{
|
*{
|
||||||
|
@ -21,7 +21,7 @@
|
||||||
body{
|
body{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
background-image: url('assets/404/crt.gif');
|
background-image: url('assets/crt.gif');
|
||||||
-webkit-filter: grayscale(100%);
|
-webkit-filter: grayscale(100%);
|
||||||
filter: grayscale(100%);
|
filter: grayscale(100%);
|
||||||
}
|
}
|
||||||
|
@ -32,7 +32,7 @@
|
||||||
<body>
|
<body>
|
||||||
<marquee behavior="alternate" scrollamount="30">
|
<marquee behavior="alternate" scrollamount="30">
|
||||||
<marquee behavior="alternate" scrollamount="30" direction="down">
|
<marquee behavior="alternate" scrollamount="30" direction="down">
|
||||||
<img src="assets/404/404.png">
|
<img src="assets/404.png">
|
||||||
</marquee>
|
</marquee>
|
||||||
</marquee>
|
</marquee>
|
||||||
</body>
|
</body>
|
169
ALPHA/about.html
Normal file
|
@ -0,0 +1,169 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset = "utf-8" />
|
||||||
|
<title>
|
||||||
|
About Me - Alpha
|
||||||
|
</title>
|
||||||
|
<!-- add icon link -->
|
||||||
|
<link rel = "icon" href = "assets/obo-icon.png"
|
||||||
|
type = "image/x-icon">
|
||||||
|
<link rel="stylesheet" type="text/css" href="style.css">
|
||||||
|
<style>
|
||||||
|
*{
|
||||||
|
box-sizing: border-box;
|
||||||
|
font-family: 'Courier New', Courier, monospace;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
ul li{list-style: none;}
|
||||||
|
body{
|
||||||
|
/*to center the items*/
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
height: 100vh;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.wrapper{
|
||||||
|
font-size: 4vw;
|
||||||
|
width: 50vw;
|
||||||
|
text-align: center;
|
||||||
|
display: flex;
|
||||||
|
|
||||||
|
}
|
||||||
|
.normal-text{
|
||||||
|
color: white;
|
||||||
|
width: 35%;
|
||||||
|
display: inline-block;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
.dynamic-text {
|
||||||
|
display: inline-block;
|
||||||
|
height: 5vw;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
.dynamic-text li{
|
||||||
|
color: rgb(0, 255, 204);
|
||||||
|
margin: 0 0 2% 5px;
|
||||||
|
position: relative;
|
||||||
|
width: fit-content;
|
||||||
|
animation: slid 18s steps(3) infinite;
|
||||||
|
-webkit-animation: slid 18s steps(3) infinite;
|
||||||
|
}
|
||||||
|
.dynamic-text li::before{
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
border-left: 2px solid rgb(0, 255, 204);
|
||||||
|
left: 0;
|
||||||
|
background: #332e33;
|
||||||
|
animation: typing 3s steps(12) infinite;
|
||||||
|
-webkit-animation: typing 3s steps(12) infinite;
|
||||||
|
}
|
||||||
|
@keyframes typing {
|
||||||
|
50%{left:100%}
|
||||||
|
100%{left:0%}
|
||||||
|
}
|
||||||
|
@keyframes slid {
|
||||||
|
|
||||||
|
50%{
|
||||||
|
transform: translateY(calc(-15.5vw));
|
||||||
|
-webkit-transform: translateY(calc(-15.5vw));
|
||||||
|
-moz-transform: translateY(calc(-15.5vw));
|
||||||
|
-ms-transform: translateY(calc(-15.5vw));
|
||||||
|
-o-transform: translateY(calc(-15.5vw));
|
||||||
|
}
|
||||||
|
100%{ transform: translateY(0px);
|
||||||
|
-webkit-transform: translateY(0px);
|
||||||
|
-moz-transform: translateY(0px);
|
||||||
|
-ms-transform: translateY(0px);
|
||||||
|
-o-transform: translateY(0px);}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="navigation">
|
||||||
|
<div class="menuToggle"></div>
|
||||||
|
<ul>
|
||||||
|
<li class="list" style="--clr:rgb(0, 196, 157);">
|
||||||
|
<a href="index.html">
|
||||||
|
<span class="icon"><ion-icon name="planet"></ion-icon></span>
|
||||||
|
<span class="text">Home</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="list active" style="--clr:rgb(0, 196, 157);">
|
||||||
|
<a href="#">
|
||||||
|
<span class="icon"><ion-icon name="transgender-outline"></ion-icon></span>
|
||||||
|
<span class="text">About</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="list" style="--clr:rgb(0, 196, 157);">
|
||||||
|
<a href="projects.html">
|
||||||
|
<span class="icon"><ion-icon name="code-slash"></ion-icon></span>
|
||||||
|
<span class="text">Projects</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="list" style="--clr:rgb(0, 196, 157);">
|
||||||
|
<a href="photography.html">
|
||||||
|
<span class="icon"><ion-icon name="camera"></ion-icon></span>
|
||||||
|
<span class="text">Photography</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="list" style="--clr:rgb(0, 196, 157);">
|
||||||
|
<a href="videography.html">
|
||||||
|
<span class="icon"><ion-icon name="videocam"></ion-icon></span>
|
||||||
|
<span class="text">Videography</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="list" style="--clr:rgb(0, 196, 157);">
|
||||||
|
<a href="discord.html">
|
||||||
|
<span class="icon"><ion-icon name="logo-discord"></ion-icon></span>
|
||||||
|
<span class="text">Discord Server</span>
|
||||||
|
</a>
|
||||||
|
<li class="list" style="--clr:rgb(0, 196, 157);">
|
||||||
|
<a href="old/index.html">
|
||||||
|
<span class="icon"><ion-icon name="archive"></ion-icon></span>
|
||||||
|
<span class="text">Old Site</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="list" style="--clr:rgb(0, 196, 157);">
|
||||||
|
<a href="BETA/index.html">
|
||||||
|
<span class="icon"><ion-icon name="code-working-outline"></ion-icon></span>
|
||||||
|
<span class="text">Beta Site</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="wrapper">
|
||||||
|
<div class="normal-text"> I'm a: </div>
|
||||||
|
<ul class="dynamic-text">
|
||||||
|
<li>Developer.</li>
|
||||||
|
<li>Crazy Lady.</li>
|
||||||
|
<li>🏳️⚧️Transwoman.</li>
|
||||||
|
<li>Photographer.</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
const menuToggle = document.querySelector('.menuToggle');
|
||||||
|
const navigation = document.querySelector('.navigation');
|
||||||
|
menuToggle.onclick = function(){
|
||||||
|
navigation.classList.toggle('open')
|
||||||
|
}
|
||||||
|
|
||||||
|
const list = document.querySelectorALl('.list');
|
||||||
|
function activeLink(){
|
||||||
|
list.forEach((item) =>
|
||||||
|
item.classList.remove('active'));
|
||||||
|
this.classList.add('active');
|
||||||
|
}
|
||||||
|
list.forEach((item) =>
|
||||||
|
item.addEventListener('click',activeLink))
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
|
||||||
|
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 43 KiB |
Before Width: | Height: | Size: 444 KiB After Width: | Height: | Size: 444 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
Before Width: | Height: | Size: 2.9 MiB After Width: | Height: | Size: 2.9 MiB |
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 1.9 MiB |
Before Width: | Height: | Size: 1.9 MiB After Width: | Height: | Size: 1.9 MiB |
Before Width: | Height: | Size: 3.4 MiB After Width: | Height: | Size: 3.4 MiB |
Before Width: | Height: | Size: 8.4 MiB After Width: | Height: | Size: 8.4 MiB |
Before Width: | Height: | Size: 8.7 MiB After Width: | Height: | Size: 8.7 MiB |
Before Width: | Height: | Size: 7.2 MiB After Width: | Height: | Size: 7.2 MiB |
Before Width: | Height: | Size: 5.2 MiB After Width: | Height: | Size: 5.2 MiB |
Before Width: | Height: | Size: 6.4 MiB After Width: | Height: | Size: 6.4 MiB |
Before Width: | Height: | Size: 5.6 MiB After Width: | Height: | Size: 5.6 MiB |
Before Width: | Height: | Size: 9.1 MiB After Width: | Height: | Size: 9.1 MiB |
Before Width: | Height: | Size: 6.6 MiB After Width: | Height: | Size: 6.6 MiB |
Before Width: | Height: | Size: 6.2 MiB After Width: | Height: | Size: 6.2 MiB |
Before Width: | Height: | Size: 14 MiB After Width: | Height: | Size: 14 MiB |
Before Width: | Height: | Size: 17 MiB After Width: | Height: | Size: 17 MiB |
Before Width: | Height: | Size: 14 MiB After Width: | Height: | Size: 14 MiB |
Before Width: | Height: | Size: 15 MiB After Width: | Height: | Size: 15 MiB |
Before Width: | Height: | Size: 12 MiB After Width: | Height: | Size: 12 MiB |
Before Width: | Height: | Size: 13 MiB After Width: | Height: | Size: 13 MiB |
Before Width: | Height: | Size: 19 MiB After Width: | Height: | Size: 19 MiB |
Before Width: | Height: | Size: 19 MiB After Width: | Height: | Size: 19 MiB |
Before Width: | Height: | Size: 18 MiB After Width: | Height: | Size: 18 MiB |
Before Width: | Height: | Size: 6.8 MiB After Width: | Height: | Size: 6.8 MiB |
Before Width: | Height: | Size: 23 MiB After Width: | Height: | Size: 23 MiB |
Before Width: | Height: | Size: 19 MiB After Width: | Height: | Size: 19 MiB |
Before Width: | Height: | Size: 9.3 MiB After Width: | Height: | Size: 9.3 MiB |
Before Width: | Height: | Size: 20 MiB After Width: | Height: | Size: 20 MiB |
Before Width: | Height: | Size: 17 MiB After Width: | Height: | Size: 17 MiB |
Before Width: | Height: | Size: 16 MiB After Width: | Height: | Size: 16 MiB |
Before Width: | Height: | Size: 8.7 MiB After Width: | Height: | Size: 8.7 MiB |
Before Width: | Height: | Size: 9.6 MiB After Width: | Height: | Size: 9.6 MiB |
Before Width: | Height: | Size: 12 MiB After Width: | Height: | Size: 12 MiB |
Before Width: | Height: | Size: 19 MiB After Width: | Height: | Size: 19 MiB |
Before Width: | Height: | Size: 3.1 MiB After Width: | Height: | Size: 3.1 MiB |
Before Width: | Height: | Size: 17 MiB After Width: | Height: | Size: 17 MiB |
Before Width: | Height: | Size: 19 MiB After Width: | Height: | Size: 19 MiB |
Before Width: | Height: | Size: 16 MiB After Width: | Height: | Size: 16 MiB |
Before Width: | Height: | Size: 18 MiB After Width: | Height: | Size: 18 MiB |
Before Width: | Height: | Size: 15 MiB After Width: | Height: | Size: 15 MiB |
Before Width: | Height: | Size: 5.9 MiB After Width: | Height: | Size: 5.9 MiB |
Before Width: | Height: | Size: 4.4 MiB After Width: | Height: | Size: 4.4 MiB |
Before Width: | Height: | Size: 2.5 MiB After Width: | Height: | Size: 2.5 MiB |
Before Width: | Height: | Size: 1.5 MiB After Width: | Height: | Size: 1.5 MiB |
Before Width: | Height: | Size: 1.4 MiB After Width: | Height: | Size: 1.4 MiB |
1
ALPHA/discord.html
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<meta http-equiv="Refresh" content="0; url='https://discord.gg/XZWHzQ8DUY'"/>
|
126
ALPHA/index.html
Normal file
|
@ -0,0 +1,126 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<!--
|
||||||
|
<meta http-equiv="Refresh" content="0; url='https://limepot.xyz/BETA/'"/>
|
||||||
|
-->
|
||||||
|
<meta charset = "utf-8" />
|
||||||
|
<title>
|
||||||
|
Home - Alpha
|
||||||
|
</title>
|
||||||
|
<!-- add icon link -->
|
||||||
|
<link rel = "icon" href = "assets/obo-icon.png"
|
||||||
|
type = "image/x-icon">
|
||||||
|
<link rel="stylesheet" type="text/css" href="style.css">
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="head"></div>
|
||||||
|
<div class="navigation">
|
||||||
|
<div class="mTitle"></div>
|
||||||
|
<div class="menuToggle"></div>
|
||||||
|
<ul>
|
||||||
|
<li class="list active" style="--clr:rgb(0, 196, 157);">
|
||||||
|
<a href="#">
|
||||||
|
<span class="icon"><ion-icon name="planet"></ion-icon></span>
|
||||||
|
<span class="text">Home</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="list" style="--clr:rgb(0, 196, 157);">
|
||||||
|
<a href="about.html">
|
||||||
|
<span class="icon"><ion-icon name="transgender-outline"></ion-icon></span>
|
||||||
|
<span class="text">About</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="list" style="--clr:rgb(0, 196, 157);">
|
||||||
|
<a href="projects.html">
|
||||||
|
<span class="icon"><ion-icon name="code-slash"></ion-icon></span>
|
||||||
|
<span class="text">Projects</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="list" style="--clr:rgb(0, 196, 157);">
|
||||||
|
<a href="photography.html">
|
||||||
|
<span class="icon"><ion-icon name="camera"></ion-icon></span>
|
||||||
|
<span class="text">Photography</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="list" style="--clr:rgb(0, 196, 157);">
|
||||||
|
<a href="videography.html">
|
||||||
|
<span class="icon"><ion-icon name="videocam"></ion-icon></span>
|
||||||
|
<span class="text">Youtube</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="list" style="--clr:rgb(0, 196, 157);">
|
||||||
|
<a href="discord.html">
|
||||||
|
<span class="icon"><ion-icon name="logo-discord"></ion-icon></span>
|
||||||
|
<span class="text">Discord</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="list" style="--clr:rgb(0, 196, 157);">
|
||||||
|
<a href="old/index.html">
|
||||||
|
<span class="icon"><ion-icon name="archive"></ion-icon></span>
|
||||||
|
<span class="text">Old Site</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
<li class="list" style="--clr:rgb(0, 196, 157);">
|
||||||
|
<a href="BETA/index.html">
|
||||||
|
<span class="icon"><ion-icon name="code-working-outline"></ion-icon></span>
|
||||||
|
<span class="text">Beta Site</span>
|
||||||
|
</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="content">
|
||||||
|
<button id="toggle-dark-light-mode">Toggle Dark/Light Mode</button>
|
||||||
|
<br><br><br>
|
||||||
|
<a href="#">0 Days since last incident.</a>
|
||||||
|
<br><br>
|
||||||
|
<p>"Forever - is composed of Nows</p>
|
||||||
|
<p>`Tis not a different time -</p>
|
||||||
|
<p>Except for Infiniteness -</p>
|
||||||
|
<p>And Latitude of Home -</p>
|
||||||
|
<br>
|
||||||
|
<p>From this - experienced Here -</p>
|
||||||
|
<p>Remove the Dates - to These -</p>
|
||||||
|
<p>Let Months dissolve in further Months -</p>
|
||||||
|
<p>And Years - exhale in Years ..."</p>
|
||||||
|
<p>- Emily Dickinson</p>
|
||||||
|
<br><br><br>
|
||||||
|
<script src='https://storage.ko-fi.com/cdn/scripts/overlay-widget.js'></script>
|
||||||
|
<script>
|
||||||
|
kofiWidgetOverlay.draw('limepot', {
|
||||||
|
'type': 'floating-chat',
|
||||||
|
'floating-chat.donateButton.text': 'Support Me',
|
||||||
|
'floating-chat.donateButton.background-color': '#00bfa5',
|
||||||
|
'floating-chat.donateButton.text-color': '#fff'
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
const toggleButton = document.getElementById('toggle-dark-light-mode');
|
||||||
|
toggleButton.addEventListener('click', () => {
|
||||||
|
document.body.classList.toggle('darkmode');
|
||||||
|
document.body.classList.toggle('lightmode');
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<script>
|
||||||
|
const menuToggle = document.querySelector('.menuToggle');
|
||||||
|
const navigation = document.querySelector('.navigation');
|
||||||
|
menuToggle.onclick = function(){
|
||||||
|
navigation.classList.toggle('open')
|
||||||
|
}
|
||||||
|
|
||||||
|
const list = document.querySelectorALl('.list');
|
||||||
|
function activeLink(){
|
||||||
|
list.forEach((item) =>
|
||||||
|
item.classList.remove('active'));
|
||||||
|
this.classList.add('active');
|
||||||
|
}
|
||||||
|
list.forEach((item) =>
|
||||||
|
item.addEventListener('click',activeLink))
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
|
||||||
|
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
1
ALPHA/rosemod.html
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<meta http-equiv="Refresh" content="0; url='https://github.com/LimePotato/roses-mod'"/>
|
111
BETA/index.html
|
@ -1,111 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<link rel = "icon" href = "assets/branding/obo-icon.png">
|
|
||||||
<title>Home - Beta</title>
|
|
||||||
<link rel="stylesheet" href="mybulma/css/mystyles.css">
|
|
||||||
|
|
||||||
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<nav class="navbar" role="navigation" aria-label="main navigation">
|
|
||||||
<div class="navbar-brand">
|
|
||||||
<a class="navbar-item" href="https://limepot.xyz/BETA">
|
|
||||||
<img src="assets/obo-icon.png">
|
|
||||||
LimePot
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
|
|
||||||
<span aria-hidden="true"></span>
|
|
||||||
<span aria-hidden="true"></span>
|
|
||||||
<span aria-hidden="true"></span>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="navbarBasicExample" class="navbar-menu">
|
|
||||||
<div class="navbar-start">
|
|
||||||
<a class="navbar-item" href="https://limepot.xyz/BETA">
|
|
||||||
Home
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<a class="navbar-item" href="https://limepot.xyz/about">
|
|
||||||
About
|
|
||||||
</a>
|
|
||||||
<div class="navbar-item has-dropdown is-hoverable">
|
|
||||||
<a class="navbar-link" href="https://limepot.xyz/projects">
|
|
||||||
Projects
|
|
||||||
</a>
|
|
||||||
<div class="navbar-dropdown">
|
|
||||||
<a class="navbar-item" href="https://github.com/LimePotato">
|
|
||||||
Github
|
|
||||||
</a>
|
|
||||||
<a class="navbar-item" href="https://limepot.xyz/photography">
|
|
||||||
Photography
|
|
||||||
</a>
|
|
||||||
<a class="navbar-item" href="https://limepot.xyz/videography">
|
|
||||||
Youtube
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
<div class="navbar-item has-dropdown is-hoverable">
|
|
||||||
<a class="navbar-link">
|
|
||||||
More
|
|
||||||
</a>
|
|
||||||
|
|
||||||
<div class="navbar-dropdown">
|
|
||||||
<a class="navbar-item" href="https://limepot.xyz/BETA/Socials">
|
|
||||||
Socials
|
|
||||||
</a>
|
|
||||||
<hr class="navbar-divider">
|
|
||||||
<a class="navbar-item" href="https://limepot.xyz/BETA/Contact">
|
|
||||||
Contact
|
|
||||||
</a>
|
|
||||||
<a class="navbar-item" href="https://limepot.xyz/old">
|
|
||||||
Old Site
|
|
||||||
</a>
|
|
||||||
<a class="navbar-item" href="https://limepot.xyz">
|
|
||||||
Alpha Site
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="navbar-end">
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<section class="section">
|
|
||||||
<div class="container">
|
|
||||||
<h1 class="title">
|
|
||||||
Hello World - LimePot Beta
|
|
||||||
</h1>
|
|
||||||
<div class="content">
|
|
||||||
<br><br><br>
|
|
||||||
<a href="#">0 Days since last incident.</a>
|
|
||||||
<br><br>
|
|
||||||
<p class="subtitle">"Forever - is composed of Nows</p>
|
|
||||||
<p class="subtitle">`Tis not a different time -</p>
|
|
||||||
<p class="subtitle">Except for Infiniteness -</p>
|
|
||||||
<p class="subtitle">And Latitude of Home -</p>
|
|
||||||
<br>
|
|
||||||
<p class="subtitle">From this - experienced Here -</p>
|
|
||||||
<p class="subtitle">Remove the Dates - to These -</p>
|
|
||||||
<p class="subtitle">Let Months dissolve in further Months -</p>
|
|
||||||
<p class="subtitle">And Years - exhale in Years ..."</p>
|
|
||||||
<p class="subtitle"></p><strong>- Emily Dickinson</strong></p>
|
|
||||||
<br><br><br>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
169
about.html
|
@ -1,169 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta charset = "utf-8" />
|
|
||||||
<title>
|
|
||||||
About Me - Alpha
|
|
||||||
</title>
|
|
||||||
<!-- add icon link -->
|
|
||||||
<link rel = "icon" href = "assets/obo-icon.png"
|
|
||||||
type = "image/x-icon">
|
|
||||||
<link rel="stylesheet" type="text/css" href="style.css">
|
|
||||||
<style>
|
|
||||||
*{
|
|
||||||
box-sizing: border-box;
|
|
||||||
font-family: 'Courier New', Courier, monospace;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
ul li{list-style: none;}
|
|
||||||
body{
|
|
||||||
/*to center the items*/
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
height: 100vh;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
.wrapper{
|
|
||||||
font-size: 4vw;
|
|
||||||
width: 50vw;
|
|
||||||
text-align: center;
|
|
||||||
display: flex;
|
|
||||||
|
|
||||||
}
|
|
||||||
.normal-text{
|
|
||||||
color: white;
|
|
||||||
width: 35%;
|
|
||||||
display: inline-block;
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
.dynamic-text {
|
|
||||||
display: inline-block;
|
|
||||||
height: 5vw;
|
|
||||||
overflow: hidden;
|
|
||||||
}
|
|
||||||
.dynamic-text li{
|
|
||||||
color: rgb(0, 255, 204);
|
|
||||||
margin: 0 0 2% 5px;
|
|
||||||
position: relative;
|
|
||||||
width: fit-content;
|
|
||||||
animation: slid 18s steps(3) infinite;
|
|
||||||
-webkit-animation: slid 18s steps(3) infinite;
|
|
||||||
}
|
|
||||||
.dynamic-text li::before{
|
|
||||||
content: "";
|
|
||||||
position: absolute;
|
|
||||||
width: 100%;
|
|
||||||
height: 100%;
|
|
||||||
border-left: 2px solid rgb(0, 255, 204);
|
|
||||||
left: 0;
|
|
||||||
background: #332e33;
|
|
||||||
animation: typing 3s steps(12) infinite;
|
|
||||||
-webkit-animation: typing 3s steps(12) infinite;
|
|
||||||
}
|
|
||||||
@keyframes typing {
|
|
||||||
50%{left:100%}
|
|
||||||
100%{left:0%}
|
|
||||||
}
|
|
||||||
@keyframes slid {
|
|
||||||
|
|
||||||
50%{
|
|
||||||
transform: translateY(calc(-15.5vw));
|
|
||||||
-webkit-transform: translateY(calc(-15.5vw));
|
|
||||||
-moz-transform: translateY(calc(-15.5vw));
|
|
||||||
-ms-transform: translateY(calc(-15.5vw));
|
|
||||||
-o-transform: translateY(calc(-15.5vw));
|
|
||||||
}
|
|
||||||
100%{ transform: translateY(0px);
|
|
||||||
-webkit-transform: translateY(0px);
|
|
||||||
-moz-transform: translateY(0px);
|
|
||||||
-ms-transform: translateY(0px);
|
|
||||||
-o-transform: translateY(0px);}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="navigation">
|
|
||||||
<div class="menuToggle"></div>
|
|
||||||
<ul>
|
|
||||||
<li class="list" style="--clr:rgb(0, 196, 157);">
|
|
||||||
<a href="index.html">
|
|
||||||
<span class="icon"><ion-icon name="planet"></ion-icon></span>
|
|
||||||
<span class="text">Home</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li class="list active" style="--clr:rgb(0, 196, 157);">
|
|
||||||
<a href="#">
|
|
||||||
<span class="icon"><ion-icon name="transgender-outline"></ion-icon></span>
|
|
||||||
<span class="text">About</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li class="list" style="--clr:rgb(0, 196, 157);">
|
|
||||||
<a href="projects.html">
|
|
||||||
<span class="icon"><ion-icon name="code-slash"></ion-icon></span>
|
|
||||||
<span class="text">Projects</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li class="list" style="--clr:rgb(0, 196, 157);">
|
|
||||||
<a href="photography.html">
|
|
||||||
<span class="icon"><ion-icon name="camera"></ion-icon></span>
|
|
||||||
<span class="text">Photography</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li class="list" style="--clr:rgb(0, 196, 157);">
|
|
||||||
<a href="videography.html">
|
|
||||||
<span class="icon"><ion-icon name="videocam"></ion-icon></span>
|
|
||||||
<span class="text">Videography</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li class="list" style="--clr:rgb(0, 196, 157);">
|
|
||||||
<a href="discord.html">
|
|
||||||
<span class="icon"><ion-icon name="logo-discord"></ion-icon></span>
|
|
||||||
<span class="text">Discord Server</span>
|
|
||||||
</a>
|
|
||||||
<li class="list" style="--clr:rgb(0, 196, 157);">
|
|
||||||
<a href="old/index.html">
|
|
||||||
<span class="icon"><ion-icon name="archive"></ion-icon></span>
|
|
||||||
<span class="text">Old Site</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li class="list" style="--clr:rgb(0, 196, 157);">
|
|
||||||
<a href="BETA/index.html">
|
|
||||||
<span class="icon"><ion-icon name="code-working-outline"></ion-icon></span>
|
|
||||||
<span class="text">Beta Site</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="wrapper">
|
|
||||||
<div class="normal-text"> I'm a: </div>
|
|
||||||
<ul class="dynamic-text">
|
|
||||||
<li>Developer.</li>
|
|
||||||
<li>Crazy Lady.</li>
|
|
||||||
<li>🏳️⚧️Transwoman.</li>
|
|
||||||
<li>Photographer.</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
const menuToggle = document.querySelector('.menuToggle');
|
|
||||||
const navigation = document.querySelector('.navigation');
|
|
||||||
menuToggle.onclick = function(){
|
|
||||||
navigation.classList.toggle('open')
|
|
||||||
}
|
|
||||||
|
|
||||||
const list = document.querySelectorALl('.list');
|
|
||||||
function activeLink(){
|
|
||||||
list.forEach((item) =>
|
|
||||||
item.classList.remove('active'));
|
|
||||||
this.classList.add('active');
|
|
||||||
}
|
|
||||||
list.forEach((item) =>
|
|
||||||
item.addEventListener('click',activeLink))
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
|
|
||||||
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 43 KiB |
Before Width: | Height: | Size: 444 KiB After Width: | Height: | Size: 444 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 19 KiB After Width: | Height: | Size: 19 KiB |
206
index.html
|
@ -1,117 +1,111 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<!--
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="Refresh" content="0; url='https://limepot.xyz/BETA/'"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
-->
|
<link rel = "icon" href = "assets/branding/obo-icon.png">
|
||||||
<meta charset = "utf-8" />
|
<title>Home - Beta</title>
|
||||||
<title>
|
<link rel="stylesheet" href="mybulma/css/mystyles.css">
|
||||||
Home - Alpha
|
|
||||||
</title>
|
|
||||||
<!-- add icon link -->
|
</head>
|
||||||
<link rel = "icon" href = "assets/obo-icon.png"
|
<body>
|
||||||
type = "image/x-icon">
|
<nav class="navbar" role="navigation" aria-label="main navigation">
|
||||||
<link rel="stylesheet" type="text/css" href="style.css">
|
<div class="navbar-brand">
|
||||||
</head>
|
<a class="navbar-item" href="https://limepot.xyz/BETA">
|
||||||
<body>
|
<img src="assets/obo-icon.png">
|
||||||
<div class="head"></div>
|
LimePot
|
||||||
<div class="navigation">
|
</a>
|
||||||
<div class="mTitle"></div>
|
|
||||||
<div class="menuToggle"></div>
|
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false" data-target="navbarBasicExample">
|
||||||
<ul>
|
<span aria-hidden="true"></span>
|
||||||
<li class="list active" style="--clr:rgb(0, 196, 157);">
|
<span aria-hidden="true"></span>
|
||||||
<a href="#">
|
<span aria-hidden="true"></span>
|
||||||
<span class="icon"><ion-icon name="planet"></ion-icon></span>
|
</a>
|
||||||
<span class="text">Home</span>
|
</div>
|
||||||
|
|
||||||
|
<div id="navbarBasicExample" class="navbar-menu">
|
||||||
|
<div class="navbar-start">
|
||||||
|
<a class="navbar-item" href="https://limepot.xyz/BETA">
|
||||||
|
Home
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<a class="navbar-item" href="https://limepot.xyz/about">
|
||||||
|
About
|
||||||
|
</a>
|
||||||
|
<div class="navbar-item has-dropdown is-hoverable">
|
||||||
|
<a class="navbar-link" href="https://limepot.xyz/projects">
|
||||||
|
Projects
|
||||||
|
</a>
|
||||||
|
<div class="navbar-dropdown">
|
||||||
|
<a class="navbar-item" href="https://github.com/LimePotato">
|
||||||
|
Github
|
||||||
</a>
|
</a>
|
||||||
</li>
|
<a class="navbar-item" href="https://limepot.xyz/photography">
|
||||||
<li class="list" style="--clr:rgb(0, 196, 157);">
|
Photography
|
||||||
<a href="about.html">
|
</a>
|
||||||
<span class="icon"><ion-icon name="transgender-outline"></ion-icon></span>
|
<a class="navbar-item" href="https://limepot.xyz/videography">
|
||||||
<span class="text">About</span>
|
Youtube
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="navbar-item has-dropdown is-hoverable">
|
||||||
|
<a class="navbar-link">
|
||||||
|
More
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<div class="navbar-dropdown">
|
||||||
|
<a class="navbar-item" href="https://limepot.xyz/BETA/Socials">
|
||||||
|
Socials
|
||||||
|
</a>
|
||||||
|
<hr class="navbar-divider">
|
||||||
|
<a class="navbar-item" href="https://limepot.xyz/BETA/Contact">
|
||||||
|
Contact
|
||||||
</a>
|
</a>
|
||||||
</li>
|
<a class="navbar-item" href="https://limepot.xyz/old">
|
||||||
<li class="list" style="--clr:rgb(0, 196, 157);">
|
Old Site
|
||||||
<a href="projects.html">
|
</a>
|
||||||
<span class="icon"><ion-icon name="code-slash"></ion-icon></span>
|
<a class="navbar-item" href="https://limepot.xyz">
|
||||||
<span class="text">Projects</span>
|
Alpha Site
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</div>
|
||||||
<li class="list" style="--clr:rgb(0, 196, 157);">
|
</div>
|
||||||
<a href="photography.html">
|
</div>
|
||||||
<span class="icon"><ion-icon name="camera"></ion-icon></span>
|
|
||||||
<span class="text">Photography</span>
|
<div class="navbar-end">
|
||||||
</a>
|
|
||||||
</li>
|
</div>
|
||||||
<li class="list" style="--clr:rgb(0, 196, 157);">
|
</div>
|
||||||
<a href="videography.html">
|
</div>
|
||||||
<span class="icon"><ion-icon name="videocam"></ion-icon></span>
|
</div>
|
||||||
<span class="text">Youtube</span>
|
</nav>
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li class="list" style="--clr:rgb(0, 196, 157);">
|
|
||||||
<a href="discord.html">
|
<section class="section">
|
||||||
<span class="icon"><ion-icon name="logo-discord"></ion-icon></span>
|
<div class="container">
|
||||||
<span class="text">Discord</span>
|
<h1 class="title">
|
||||||
</a>
|
Hello World - LimePot Beta
|
||||||
</li>
|
</h1>
|
||||||
<li class="list" style="--clr:rgb(0, 196, 157);">
|
<div class="content">
|
||||||
<a href="old/index.html">
|
|
||||||
<span class="icon"><ion-icon name="archive"></ion-icon></span>
|
|
||||||
<span class="text">Old Site</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
<li class="list" style="--clr:rgb(0, 196, 157);">
|
|
||||||
<a href="BETA/index.html">
|
|
||||||
<span class="icon"><ion-icon name="code-working-outline"></ion-icon></span>
|
|
||||||
<span class="text">Beta Site</span>
|
|
||||||
</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
<div class="content">
|
|
||||||
<button id="toggle-dark-light-mode">Toggle Dark/Light Mode</button>
|
|
||||||
<br><br><br>
|
<br><br><br>
|
||||||
<a href="#">0 Days since last incident.</a>
|
<a href="#">0 Days since last incident.</a>
|
||||||
<br><br>
|
<br><br>
|
||||||
<p>"Forever - is composed of Nows</p>
|
<p class="subtitle">"Forever - is composed of Nows</p>
|
||||||
<p>`Tis not a different time -</p>
|
<p class="subtitle">`Tis not a different time -</p>
|
||||||
<p>Except for Infiniteness -</p>
|
<p class="subtitle">Except for Infiniteness -</p>
|
||||||
<p>And Latitude of Home -</p>
|
<p class="subtitle">And Latitude of Home -</p>
|
||||||
<br>
|
<br>
|
||||||
<p>From this - experienced Here -</p>
|
<p class="subtitle">From this - experienced Here -</p>
|
||||||
<p>Remove the Dates - to These -</p>
|
<p class="subtitle">Remove the Dates - to These -</p>
|
||||||
<p>Let Months dissolve in further Months -</p>
|
<p class="subtitle">Let Months dissolve in further Months -</p>
|
||||||
<p>And Years - exhale in Years ..."</p>
|
<p class="subtitle">And Years - exhale in Years ..."</p>
|
||||||
<p>- Emily Dickinson</p>
|
<p class="subtitle"></p><strong>- Emily Dickinson</strong></p>
|
||||||
<br><br><br>
|
<br><br><br>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
<script>
|
</section>
|
||||||
const toggleButton = document.getElementById('toggle-dark-light-mode');
|
</body>
|
||||||
toggleButton.addEventListener('click', () => {
|
|
||||||
document.body.classList.toggle('darkmode');
|
|
||||||
document.body.classList.toggle('lightmode');
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
<script>
|
|
||||||
const menuToggle = document.querySelector('.menuToggle');
|
|
||||||
const navigation = document.querySelector('.navigation');
|
|
||||||
menuToggle.onclick = function(){
|
|
||||||
navigation.classList.toggle('open')
|
|
||||||
}
|
|
||||||
|
|
||||||
const list = document.querySelectorALl('.list');
|
|
||||||
function activeLink(){
|
|
||||||
list.forEach((item) =>
|
|
||||||
item.classList.remove('active'));
|
|
||||||
this.classList.add('active');
|
|
||||||
}
|
|
||||||
list.forEach((item) =>
|
|
||||||
item.addEventListener('click',activeLink))
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
|
|
||||||
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
|
|
||||||
</body>
|
|
||||||
</html>
|
</html>
|