Compare commits

..

2 commits

Author SHA1 Message Date
elh
bf4aef54af fixed typo 2024-07-04 18:19:11 -04:00
elh
9c1df4736f added embedw 2024-07-04 18:17:58 -04:00
7 changed files with 49 additions and 15 deletions

BIN
public/shiggy.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View file

@ -1,7 +1,12 @@
---
---
<footer>
<div class="footer">
<a href="https://git.lgbt/elh/elh.gay">Source Code</a>
<div class="foot">
<a class="foot" href="https://git.lgbt/elh/elh.gay">Source Code</a>
</div>
</footer>
<style>
.foot {
text-decoration: none;
}
</style>

View file

@ -4,8 +4,8 @@ import FriendButton from "../components/Friendbutton.astro"
<section id="Friends">
<h2>Friends Sites!</h2>
<span class="friends">
<FriendButton website="https://ashleygraves.eu/" image="https://dp.nea.moe/avatar/836177139798638592.png" title="Ashley"/>
<FriendButton website=" https://pandaptable.moe" image="/nemmy.gif" title="Nemmy"/>
<FriendButton website="https://ashleygraves.eu/" image="https://dp.nea.moe/avatar/836177139798638592.png" title="Ashley"/>
<FriendButton website=" https://pandaptable.moe" image="/nemmy.gif" title="Nemmy"/>
<FriendButton website="https://tiramisu.gay/" image=" https://dp.nea.moe/avatar/1215758862444007465.png" title="Tiramisu"/>
<FriendButton website="Https://vendicated.dev/" image=" https://dp.nea.moe/avatar/343383572805058560.png" title="Vee"/>
<FriendButton website="https://zoey-on-github.github.io/" image=" https://dp.nea.moe/avatar/696593747353534544.png" title="Julie"/>
@ -20,7 +20,7 @@ import FriendButton from "../components/Friendbutton.astro"
<FriendButton website="https://rozbrajacz.futbol/" image=" https://dp.nea.moe/avatar/455435762981273630.png" title="Rozbrajacz"/>
<FriendButton website="https://byeoon.github.io//" image=" https://dp.nea.moe/avatar/1167275288036655133.png" title="Byeoon"/>
<FriendButton website="https://krstlskll69.github.io/" image=" https://dp.nea.moe/avatar/929208515883569182.png" title="Krystal"/>
<FriendButton website="https://potato.likes.boykissi.ng/" image=" https://dp.nea.moe/avatar/734079736615141426.png" title="Potato"/>
<FriendButton website="https://catboys.zip/" image=" https://dp.nea.moe/avatar/734079736615141426.png" title="Potato"/>
</span>
</section>
<style>
@ -31,6 +31,7 @@ import FriendButton from "../components/Friendbutton.astro"
justify-content: center;
gap: 0.5rem;
image { width: 5rem; }
}
</style>

View file

@ -35,7 +35,7 @@ import Socialsbutton from "../components/socialsbutton.astro"
</span>
</div>
<div class="social">
Git.lgbt
git.lgbt
<a><img width=40rem class="socialimage" title="" src="/git.svg"></a>
<span class="Button">
@ -62,4 +62,5 @@ margin-bottom: 1rem;
margin:0.5rem;
font-size:large;
}
</style>

View file

@ -6,11 +6,13 @@ const {pageTitle} = Astro.props
---
<html lang="en">
<head>
<meta property="og:title" content="Hell (Stellaluna's Site)">
<meta property="og:description" content="Creature Located Within Your WALLS">
<meta property="og:image" content="/shiggy.gif">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="generator" content={Astro.generator} >
<title>{pageTitle}</title>
</head>
<body>
<Header/>

View file

@ -4,4 +4,5 @@ const pageTitle="About Me";
---
<Layout pageTitle={pageTitle}>
<h1>about me</h1>
<p></p>
</Layout>

View file

@ -13,7 +13,11 @@ font-weight: 400;
padding: 2rem;
line-height: 1.5;
}
@media only screen and (max-width: 768px){
body {
font-size: 50%;
}
}
* {
box-sizing: border-box;
font-family: 'OCR A Std', sans-serif;
@ -26,9 +30,19 @@ font-weight: 400;
text-align: center;
max-width: auto;
}
@media only screen and (max-width: 768px){
h1 {
font-size: 50%;
}
}
h2 {text-align: center;
max-width: auto;
font-size: 2.5rem;}
@media only screen and (max-width: 768px){
h2 {
font-size: 1.5rem;
}
}
footer {
text-align: center;
background-color: orange;
@ -43,6 +57,11 @@ header {
line-height: 1.5;
text-align:center;
font-size: 1rem;
}
@media only screen and (max-width: 768px){
header {
font-size: 50%;
}
}
.profilepic {
width: 7rem;
@ -59,7 +78,7 @@ font-size: 2rem
/* nav styles */
.nav-links {
width: 100%;
width: 50%;
top: 5rem;
left: 48px;
background-color: #ff9776;
@ -98,10 +117,11 @@ font-size: 2rem
}
}
.navbutton {
border-radius: 30%;
background: orange;
border-width: px;
border-width: 3px;
}
.navbutton:hover, .navbutton:active
{
@ -110,6 +130,7 @@ font-size: 2rem
}
.fbutton {
border-radius: 100px;
border-width: 0px;
}
.buttonimg {
@ -128,12 +149,15 @@ font-size: 2rem
.SocialsButton a{
color: purple;
text-decoration: none;
display: inline;
padding: 2rem;
}
.SocialsButton:hover {
background-color: darkorange;
}
@media only screen and (max-width: 768px){
.SocialsButton{
padding: .75rem ;
}
}