-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
312cb8e
commit 02fba13
Showing
3 changed files
with
178 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,176 @@ | ||
<!DOCTYPE html> | ||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en"> | ||
|
||
<head> | ||
<title>Disclone | Home 🛜</title> | ||
</head> | ||
|
||
<body> | ||
<header> | ||
<h1>Disclone</h1> | ||
<a href="/channels"> | ||
<div class="btn white">Open Disclone</div> | ||
</a> | ||
</header> | ||
<section id="pres"> | ||
<img class="bg" src="static/home/bg.svg" alt="background" /> | ||
<h2>Ceci n'est pas Discord</h2> | ||
<div class="side-text"> | ||
<h3>No ads</h3> | ||
<h3>No trackers</h3> | ||
<h3>No data-collection</h3> | ||
</div> | ||
<div class="img"> | ||
<img src="static/home/screen.png" alt="application screenshot" /> | ||
</div> | ||
</section> | ||
<footer> | ||
<p>Choose the responsible, open source, tracker free discord. | ||
create your account in 2 clicks and join our community | ||
</p> | ||
Lou ! x Carbonlab | ||
</footer> | ||
</body> | ||
|
||
<style> | ||
body { | ||
margin: 0; | ||
min-height: 100svh; | ||
font-family: sans-serif; | ||
display: flex; | ||
flex-direction: column; | ||
--blue: rgba(88, 101, 242, 1); | ||
--blue-shadow: rgba(88, 101, 242, 0.6); | ||
--white: #fcfcfc; | ||
--black: #171715; | ||
background: var(--black); | ||
overflow: hidden; | ||
} | ||
|
||
header { | ||
background: var(--black); | ||
width: 100%; | ||
height: 5rem; | ||
display: flex; | ||
color: var(--white); | ||
flex-direction: row; | ||
align-items: center; | ||
justify-content: space-around; | ||
} | ||
|
||
h2 { | ||
font-size: 4rem; | ||
text-align: center; | ||
font-weight: 900; | ||
line-height: 3.7rem; | ||
} | ||
|
||
p { | ||
width: 50%; | ||
line-height: 2rem; | ||
font-size: 1.2rem; | ||
font-weight: 100; | ||
text-align: center; | ||
} | ||
|
||
footer { | ||
height: 20svh; | ||
background: var(--black); | ||
color: var(--white); | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
font-size: 2rem; | ||
} | ||
|
||
#pres { | ||
background: var(--black); | ||
height: fit-content; | ||
width: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
color: var(--white); | ||
padding: 3rem 0 8rem 0; | ||
} | ||
|
||
.btn { | ||
border-radius: 4rem; | ||
padding: 0.6rem 1rem; | ||
} | ||
|
||
.white { | ||
background: var(--white); | ||
color: var(--black); | ||
} | ||
|
||
.black { | ||
background: var(--black); | ||
color: var(--white); | ||
} | ||
|
||
header .btn { | ||
font-weight: 800; | ||
font-size: 0.8rem; | ||
} | ||
|
||
#pres .btn { | ||
font-size: 1.2rem; | ||
padding: 1rem 2rem; | ||
} | ||
|
||
a:visited { | ||
text-decoration: none; | ||
} | ||
|
||
a:link { | ||
text-decoration: none; | ||
} | ||
|
||
.img { | ||
height: calc(50svh + 2rem); | ||
border-radius: 1rem; | ||
overflow: hidden; | ||
width: fit-content; | ||
padding: 1rem; | ||
background: #6370855e; | ||
transform: translate(31%, 0); | ||
backdrop-filter: blur(2px); | ||
filter: drop-shadow(-3px 3px 8px #00000063); | ||
user-select: none; | ||
} | ||
|
||
.img img { | ||
height: 100%; | ||
border-radius: 1rem; | ||
} | ||
|
||
.bg { | ||
height: 172vh; | ||
position: absolute; | ||
right: 0; | ||
transform: translate(8%, 3svh) rotate(322deg); | ||
pointer-events: none; | ||
} | ||
|
||
.side-text { | ||
position: absolute; | ||
top: 45svh; | ||
left: 13vw; | ||
} | ||
|
||
h3 { | ||
font-size: 2.7rem; | ||
margin: 1.5rem 0; | ||
} | ||
|
||
@media (max-aspect-ratio:11/9) { | ||
.side-text { | ||
visibility: hidden; | ||
|
||
} | ||
} | ||
</style> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters