WIP: temp commit in case my laptop explodes
This commit is contained in:
parent
be75f60b38
commit
7707d8b7db
7 changed files with 56 additions and 11 deletions
|
@ -27,11 +27,11 @@ import '../styles/components/Footer.scss'
|
||||||
<h3>The Software</h3>
|
<h3>The Software</h3>
|
||||||
<div class="footerLinks">
|
<div class="footerLinks">
|
||||||
<a href="https://git.moonleay.net/DiscordBots/lilJudd" target="_blank"
|
<a href="https://git.moonleay.net/DiscordBots/lilJudd" target="_blank"
|
||||||
>The Bot Code</a
|
>The bot's code</a
|
||||||
>
|
>
|
||||||
<a
|
<a
|
||||||
href="https://git.moonleay.net/Websites/liljudd-website"
|
href="https://git.moonleay.net/Websites/liljudd-website"
|
||||||
target="_blank">The Website Code</a
|
target="_blank">The websites code</a
|
||||||
>
|
>
|
||||||
<a href="/acknowledgements" target="_self">Acknowledgements</a>
|
<a href="/acknowledgements" target="_self">Acknowledgements</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -7,11 +7,15 @@ interface SectionProps {
|
||||||
note: string;
|
note: string;
|
||||||
}
|
}
|
||||||
const { imgUrl, imgAlt, title, description, note } = Astro.props;
|
const { imgUrl, imgAlt, title, description, note } = Astro.props;
|
||||||
|
import '../styles/components/ImageSection.scss'
|
||||||
---
|
---
|
||||||
|
|
||||||
<section>
|
<section class="ImageSection">
|
||||||
<h1>{title}</h1>
|
<div class="backgroundImage"></div>
|
||||||
<img src={imgUrl} alt={imgAlt} />
|
<div class="content">
|
||||||
<p>{description}</p>
|
<h1>{title}</h1>
|
||||||
<p>{note}</p>
|
<img src={imgUrl} alt={imgAlt} />
|
||||||
|
<p>{description}</p>
|
||||||
|
<p>{note}</p>
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
|
@ -10,7 +10,7 @@ import '../styles/components/NavBar.scss';
|
||||||
src="https://static.moonleay.net/img/lilJuddWeb/logos/logox256.png"
|
src="https://static.moonleay.net/img/lilJuddWeb/logos/logox256.png"
|
||||||
alt="The Bots Logo"
|
alt="The Bots Logo"
|
||||||
/>
|
/>
|
||||||
li'l Judd
|
li'l Judd
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
<li class="navElem">
|
<li class="navElem">
|
||||||
|
|
|
@ -5,7 +5,7 @@ import '../styles/pages/index.scss';
|
||||||
|
|
||||||
<Layout>
|
<Layout>
|
||||||
<section class="section">
|
<section class="section">
|
||||||
<h1>li'l Judd</h1>
|
<h1>li'l Judd</h1>
|
||||||
<h5>The competetive Splatoon Bot</h5>
|
<h5>The competetive Splatoon Bot</h5>
|
||||||
<div>
|
<div>
|
||||||
<p class="p1">Improve your competitive Splatoon experience!</p>
|
<p class="p1">Improve your competitive Splatoon experience!</p>
|
||||||
|
|
|
@ -38,6 +38,7 @@ footer {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: baseline;
|
align-items: baseline;
|
||||||
|
font-size: 0.75rem;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
@ -71,7 +72,7 @@ footer {
|
||||||
.footerNotice {
|
.footerNotice {
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 0.75rem;
|
font-size: 0.65rem;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
transition: .5s;
|
transition: .5s;
|
||||||
|
|
34
src/styles/components/ImageSection.scss
Normal file
34
src/styles/components/ImageSection.scss
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
.ImageSection {
|
||||||
|
//background-image: url("https://static.moonleay.net/img/lilJuddWeb/bgs/tapes-bg.png"), linear-gradient(180deg,rgba(2,0,36,.1) 0%,rgba(0,0,0,0) 35%,rgba(0,0,0,.25) 100%);
|
||||||
|
|
||||||
|
.backgroundImage{
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
background-size: contain;
|
||||||
|
background-color: rgb(25 215 25);
|
||||||
|
-webkit-mask-image: url("https://static.moonleay.net/img/lilJuddWeb/bgs/card-header.svg");
|
||||||
|
mask-image: url("https://static.moonleay.net/img/lilJuddWeb/bgs/card-header.svg");
|
||||||
|
-webkit-mask-position: top;
|
||||||
|
mask-position: top;
|
||||||
|
-webkit-mask-size: 2000px auto;
|
||||||
|
mask-size: 2000px auto;
|
||||||
|
-webkit-mask-repeat: no-repeat;
|
||||||
|
mask-repeat: no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
p {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
|
@ -7,7 +7,6 @@
|
||||||
|
|
||||||
.section h1 {
|
.section h1 {
|
||||||
font-size: 4rem;
|
font-size: 4rem;
|
||||||
margin-top: 8rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.section h5 {
|
.section h5 {
|
||||||
|
@ -29,4 +28,11 @@
|
||||||
|
|
||||||
.p2 a {
|
.p2 a {
|
||||||
font-weight: bolder;
|
font-weight: bolder;
|
||||||
|
text-decoration: underline;
|
||||||
|
font-size: 0.9rem;
|
||||||
|
transition: .5s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p2 a:hover {
|
||||||
|
color: rgb(96 59 255) !important;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue