about: wip
This commit is contained in:
parent
f1fbd4746e
commit
c09eff2abb
2 changed files with 40 additions and 8 deletions
|
|
@ -653,12 +653,33 @@ home-content {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* About page */
|
||||||
|
|
||||||
about {
|
about {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: stretch;
|
align-items: stretch;
|
||||||
|
gap: 2rem;
|
||||||
|
|
||||||
|
>smaller-container {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
align-items: center;
|
||||||
|
background-image: url(assets/gifs/beatingpurple.gif);
|
||||||
|
border: 5px solid var(--darkerer-pink);
|
||||||
|
|
||||||
|
&#left {
|
||||||
|
img {
|
||||||
|
max-width: 10svw;
|
||||||
|
padding: 2rem;
|
||||||
|
mix-blend-mode: hard-light;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
>main-container {
|
>main-container {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
@ -666,19 +687,22 @@ about {
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background-image: url(assets/gifs/heart-mosh.gif);
|
background-image: url(assets/gifs/heart-mosh.gif);
|
||||||
background-size: contain;
|
background-size: cover;
|
||||||
|
background-position: center;
|
||||||
|
background-repeat: no-repeat;
|
||||||
width: min(90svw, 1000px);
|
width: min(90svw, 1000px);
|
||||||
min-height: 70svh;
|
min-height: 70svh;
|
||||||
height: auto;
|
height: auto;
|
||||||
border: 5px solid var(--lavender);
|
border: 5px solid var(--lavender);
|
||||||
padding: 1rem 2rem;
|
padding: 1rem 2rem;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
img {
|
[popover] {
|
||||||
width: 80%;
|
color: white;
|
||||||
display: block;
|
border: 2px solid var(--lavender);
|
||||||
margin-inline: auto;
|
background-color: black;
|
||||||
}
|
padding: 2rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,15 @@
|
||||||
<about>
|
<about>
|
||||||
<!-- Ajouter cœur ici et tu peux l'examiner ou quoi, ça pourrait être cool -->
|
<!-- Ajouter cœur ici et tu peux l'examiner ou quoi, ça pourrait être cool -->
|
||||||
|
<smaller-container id="left">
|
||||||
|
<img src="/static/assets/images/pfp.webp" />
|
||||||
|
</smaller-container>
|
||||||
<main-container>
|
<main-container>
|
||||||
|
<button popovertarget="mainpopover">Salutttttttt</button>
|
||||||
<text>Salut</text>
|
|
||||||
</main-container>
|
</main-container>
|
||||||
|
<!-- <smaller-container> -->
|
||||||
|
<!-- <p>Salut</p> -->
|
||||||
|
<!-- </smaller-container> -->
|
||||||
|
<mainpopover popover id="mainpopover">
|
||||||
|
<p>Salut</p>
|
||||||
|
</mainpopover>
|
||||||
</about>
|
</about>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue