Chore: grid on features page
This commit is contained in:
parent
729ff7168a
commit
5ac4ec0419
8 changed files with 130 additions and 147 deletions
|
@ -1,17 +1,24 @@
|
|||
---
|
||||
interface SectionProps {
|
||||
interface Props {
|
||||
imgUrl: string;
|
||||
imgAlt: string;
|
||||
title: string;
|
||||
description: string;
|
||||
note: string;
|
||||
centered?: boolean;
|
||||
}
|
||||
const { imgUrl, imgAlt, title, description, note } = Astro.props;
|
||||
import '../styles/components/ImageSection.scss'
|
||||
const {
|
||||
imgUrl,
|
||||
imgAlt,
|
||||
title,
|
||||
description,
|
||||
note,
|
||||
centered = false,
|
||||
} = Astro.props;
|
||||
import "../styles/components/ImageSection.scss";
|
||||
---
|
||||
|
||||
<section class="ImageSection">
|
||||
<div class="content">
|
||||
<section class:list={["ImageSection", { centered }]}>
|
||||
<h1>{title}</h1>
|
||||
<div class="imgDiv">
|
||||
<img src={imgUrl} alt={imgAlt} />
|
||||
|
@ -20,5 +27,4 @@ import '../styles/components/ImageSection.scss'
|
|||
<div>
|
||||
<p>{note}</p>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
import Footer from "@components/Footer.astro";
|
||||
import NavBar from "@components/NavBar.astro";
|
||||
import '../styles/Layout.scss';
|
||||
import '../styles/GlobalLayout.css'
|
||||
import "../styles/Layout.scss";
|
||||
import "../styles/GlobalLayout.css";
|
||||
---
|
||||
|
||||
<!doctype html>
|
||||
|
@ -20,9 +20,7 @@ import '../styles/GlobalLayout.css'
|
|||
</head>
|
||||
<body>
|
||||
<NavBar />
|
||||
<div class="content-div">
|
||||
<slot />
|
||||
</div>
|
||||
<Footer />
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1,14 +1,13 @@
|
|||
---
|
||||
import ImageSection from "@components/ImageSection.astro";
|
||||
import Layout from "@layouts/Layout.astro";
|
||||
import '../styles/pages/features.scss'
|
||||
import "../styles/pages/features.scss";
|
||||
---
|
||||
|
||||
<Layout>
|
||||
<div class="container">
|
||||
<h1 class="title">Features</h1>
|
||||
<div class="gridlayout">
|
||||
<div >
|
||||
<ImageSection
|
||||
imgUrl="https://static.moonleay.net/img/lilJuddWeb/features/timeplanner.png"
|
||||
imgAlt="Screenshot of the time planning feature of li'l Judd"
|
||||
|
@ -16,17 +15,6 @@ import '../styles/pages/features.scss'
|
|||
description="Helps you to see on which days your fellow team mates are available."
|
||||
note="The bot can send these planning messages every monday at 3AM. Members can click the buttons on each message to communicate, if they have time on that day."
|
||||
/>
|
||||
</div>
|
||||
<div >
|
||||
<ImageSection
|
||||
imgUrl="https://static.moonleay.net/img/lilJuddWeb/features/notifs.png"
|
||||
imgAlt="Screenshot of the notification feature of li'l Judd"
|
||||
title="Notifications"
|
||||
description="Make sure that you and your team members remember to vote in the Time Planner."
|
||||
note="The bot can add roles. The first one gets pinged, when the time planner sends the messages, the other one gets assigned to the available members of the day, so that it is possible to ping all available people."
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<ImageSection
|
||||
imgUrl="https://static.moonleay.net/img/lilJuddWeb/features/matchplanner.png"
|
||||
imgAlt="Screenshot of the match planning feature of li'l Judd"
|
||||
|
@ -34,8 +22,13 @@ import '../styles/pages/features.scss'
|
|||
description="Make sure that you know when your next match is and who will participate."
|
||||
note="The bot can send these planning messages, when the command /match is used. Members can click the buttons on each message to communicate, if they will participate in the match. Participating members will get a role until the match has started."
|
||||
/>
|
||||
</div>
|
||||
<div>
|
||||
<ImageSection
|
||||
imgUrl="https://static.moonleay.net/img/lilJuddWeb/features/notifs.png"
|
||||
imgAlt="Screenshot of the notification feature of li'l Judd"
|
||||
title="Notifications"
|
||||
description="Make sure that you and your team members remember to vote in the Time Planner."
|
||||
note="The bot can add roles. The first one gets pinged, when the time planner sends the messages, the other one gets assigned to the available members of the day, so that it is possible to ping all available people."
|
||||
/>
|
||||
<ImageSection
|
||||
imgUrl="https://static.moonleay.net/img/lilJuddWeb/features/rotationstatus.png"
|
||||
imgAlt="Screenshot of the current x map rotation in li'l Judd's status"
|
||||
|
@ -43,10 +36,8 @@ import '../styles/pages/features.scss'
|
|||
description="Li'l Judd can show you the current map rotation in his status."
|
||||
note="The bot cycles through the current map and mode rotation. It updates every few seconds."
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div class="centered">
|
||||
<ImageSection
|
||||
centered
|
||||
imgUrl="https://static.moonleay.net/img/lilJuddWeb/features/unknown.png"
|
||||
imgAlt="A Question Mark"
|
||||
title="More to come.."
|
||||
|
|
|
@ -2,7 +2,8 @@
|
|||
font-family: "Splatoon";
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url("/assets/fonts/Splatoon2-common.woff2") format("woff2"),
|
||||
src:
|
||||
url("/assets/fonts/Splatoon2-common.woff2") format("woff2"),
|
||||
url("/assets/fonts/Splatoon2-common.woff") format("woff");
|
||||
}
|
||||
|
||||
|
@ -52,4 +53,3 @@ a {
|
|||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
|
|
|
@ -75,13 +75,13 @@ footer {
|
|||
font-size: 0.65rem;
|
||||
|
||||
a {
|
||||
transition: .5s;
|
||||
}
|
||||
transition: 0.5s;
|
||||
|
||||
a:hover {
|
||||
&:hover {
|
||||
color: rgb(96 59 255) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
display: grid;
|
||||
|
|
|
@ -1,32 +1,38 @@
|
|||
.ImageSection {
|
||||
border-radius: 0.5rem;
|
||||
|
||||
max-width: 100vw;
|
||||
max-height: 550px;
|
||||
|
||||
//height: 550px;
|
||||
width: 550px;
|
||||
|
||||
position: relative;
|
||||
|
||||
background-size: contain;
|
||||
background-color: rgba(183, 183, 183, 0.4);
|
||||
backdrop-filter: blur(5px);
|
||||
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%);
|
||||
background-image: url("https://static.moonleay.net/img/lilJuddWeb/bgs/tapes-bg.png"),
|
||||
linear-gradient(
|
||||
180deg,
|
||||
rgba(2, 0, 36, 0.1) 0%,
|
||||
rgba(0, 0, 0, 0) 35%,
|
||||
rgba(0, 0, 0, 0.25) 100%
|
||||
);
|
||||
|
||||
margin: 1rem;
|
||||
padding: 1rem;
|
||||
|
||||
.content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: space-around;
|
||||
|
||||
&.centered {
|
||||
grid-column: 1/-1;
|
||||
width: 50%;
|
||||
justify-self: center;
|
||||
}
|
||||
|
||||
.imgDiv {
|
||||
background-color: rgba(0, 0, 0, 0.4);
|
||||
backdrop-filter: blur(5px);
|
||||
|
||||
padding: 0.5rem 0.5rem 0;
|
||||
padding: 0.5rem;
|
||||
border-radius: 0.5rem;
|
||||
|
||||
display: flex;
|
||||
|
|
|
@ -9,33 +9,16 @@
|
|||
margin-bottom: 1.2rem;
|
||||
}
|
||||
|
||||
.centered {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.gridlayout {
|
||||
display: grid;
|
||||
grid-template-columns: 550px;
|
||||
align-content: center;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.gridlayout div {
|
||||
margin-bottom: 1rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1100px) {
|
||||
.gridlayout {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
align-items: center;
|
||||
|
||||
div {
|
||||
grid-column: span 1;
|
||||
margin: 1rem;
|
||||
grid-template-columns: repeat(2, 550px);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,20 +3,20 @@
|
|||
flex-direction: column;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.section h1 {
|
||||
h1 {
|
||||
font-size: 4rem;
|
||||
}
|
||||
|
||||
.section h5 {
|
||||
h5 {
|
||||
font-size: 1.5rem;
|
||||
margin-top: 0.25rem;
|
||||
}
|
||||
|
||||
.section div {
|
||||
div {
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
.p1 {
|
||||
font-size: 1rem;
|
||||
|
@ -24,15 +24,14 @@
|
|||
|
||||
.p2 {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.p2 a {
|
||||
a {
|
||||
font-weight: bolder;
|
||||
text-decoration: underline;
|
||||
font-size: 0.9rem;
|
||||
transition: .5s;
|
||||
}
|
||||
transition: 0.5s;
|
||||
|
||||
.p2 a:hover {
|
||||
&:hover {
|
||||
color: rgb(96 59 255) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue