cleanup
This commit is contained in:
parent
a117498cff
commit
28776e81c5
Binary file not shown.
After Width: | Height: | Size: 53 KiB |
|
@ -1,59 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="464.7pt"
|
||||
height="465.5pt"
|
||||
viewBox="0 0 464.7 465.5"
|
||||
version="1.1"
|
||||
id="svg14"
|
||||
sodipodi:docname="forum-logo.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<sodipodi:namedview
|
||||
id="namedview16"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:showpageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#505050"
|
||||
inkscape:document-units="pt"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.99230398"
|
||||
inkscape:cx="361.7843"
|
||||
inkscape:cy="281.16384"
|
||||
inkscape:window-width="1912"
|
||||
inkscape:window-height="1047"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg14" />
|
||||
<defs
|
||||
id="defs5">
|
||||
<clipPath
|
||||
id="clip1">
|
||||
<path
|
||||
d="M 355 315 L 464.699219 315 L 464.699219 458 L 355 458 Z M 355 315 "
|
||||
id="path2" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<g
|
||||
id="surface1"
|
||||
transform="matrix(1.6859291,0,0,1.677271,-159.33156,1.1070442)">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="M 232.49609,20.289063 349.44531,137.43359 c -1.33594,2.05078 -99.88672,100.08594 -113.21094,113.41016 -1.21875,1.21875 -2.27343,2.97266 -4.03515,3.44531 L 115.34766,137.63281 Z M 94.773438,137.33594 c 0,9.82812 7.078122,14.75781 13.289062,20.96875 l 102.77344,102.77734 c 7.22656,7.22656 11.42187,13.68359 22.15234,13.68359 8.94141,0 14.12109,-7.23437 20.57422,-13.68359 L 365.00781,149.64844 c 1.64453,-1.63282 2.47266,-3.0625 3.44141,-5.21875 5.83984,-13.01563 -5.11328,-21.0625 -11.91406,-27.86328 L 253.36328,13.394531 c -6.5,-6.5 -11.27344,-13.4843748 -21.16406,-13.4843748 -9.37891,0 -14.26563,6.9804688 -20.76953,13.4843748 L 99.785156,125.02734 c -2.742187,2.71875 -5.011718,6.98438 -5.011718,12.3086 z m 0,0"
|
||||
id="path7" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
|
||||
d="m 208.17969,79.84375 v 144.125 c 0,0.90625 0.27343,1.17969 1.17968,1.17969 h 28.35157 v -61.82422 h 36.23047 v -29.53125 h -36.23047 v -25.59375 h 38.58984 c 1.66406,0 0.78906,-0.61328 0.78906,-1.57813 V 78.664063 h -67.73047 c -0.90625,0 -1.17968,0.273437 -1.17968,1.179687 z m 0,0"
|
||||
id="path9" />
|
||||
<g
|
||||
clip-path="url(#clip1)"
|
||||
clip-rule="nonzero"
|
||||
id="g11" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 2.6 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.3 MiB |
Binary file not shown.
Before Width: | Height: | Size: 231 KiB |
Binary file not shown.
Before Width: | Height: | Size: 38 KiB |
Binary file not shown.
Before Width: | Height: | Size: 93 KiB |
|
@ -1,62 +0,0 @@
|
|||
html {
|
||||
background-color: grey;
|
||||
}
|
||||
|
||||
.container {
|
||||
background-color: red;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
grid-auto-rows: minmax(100px, auto);
|
||||
gap: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.block {
|
||||
border: solid 5px orange;
|
||||
border-radius: 25px;
|
||||
}
|
||||
|
||||
.one {
|
||||
grid-column: 2 / 4;
|
||||
grid-row: 1;
|
||||
}
|
||||
|
||||
.two {
|
||||
grid-column: 2 / 4;
|
||||
grid-row: 2 / 5;
|
||||
}
|
||||
|
||||
.three {
|
||||
grid-column: 1;
|
||||
grid-row: 2 / 5;
|
||||
}
|
||||
|
||||
.four {
|
||||
grid-column: 4;
|
||||
grid-row: 2;
|
||||
}
|
||||
|
||||
.five {
|
||||
grid-column: 4;
|
||||
grid-row: 3;
|
||||
}
|
||||
|
||||
.six {
|
||||
grid-column: 4;
|
||||
grid-row: 4;
|
||||
}
|
||||
|
||||
.seven {
|
||||
grid-column: 2 / 4;
|
||||
grid-row: 5 / 7;
|
||||
}
|
||||
|
||||
.eight {
|
||||
grid-column: 2;
|
||||
grid-row: 7 / 8;
|
||||
}
|
||||
|
||||
.nine {
|
||||
grid-column: 3;
|
||||
grid-row: 7 / 8;
|
||||
}
|
|
@ -1,22 +0,0 @@
|
|||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width">
|
||||
<title>Game Template</title>
|
||||
<link rel="stylesheet" href="game-template.css">
|
||||
<link rel="icon" href="/favicon.ico" type="image/x-icon">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<div class="block one"><p>logo</p></div>
|
||||
<div class="block two"><p>trailer</p></div>
|
||||
<div class="block three"><p>sommaire</p></div>
|
||||
<div class="block four"><p>steam page</p></div>
|
||||
<div class="block five"><p>social media link</p></div>
|
||||
<div class="block six"><p>mailing list</p></div>
|
||||
<div class="block seven"><p>desc / suite de la page</p><p>faire different block pour chaque partie</p></div>
|
||||
<div class="block eight"><p>wishlist now!</p></div>
|
||||
<div class="block nine"><p>lien steam</p></div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -1,3 +0,0 @@
|
|||
<a href="/">acceuil</a>
|
||||
<br>
|
||||
<img src="https://i0.wp.com/www.cssscript.com/wp-content/uploads/2018/03/minimal-notification-popup-pure-javascript.png?fit=413%2C302&ssl=1" />
|
48
index.html
48
index.html
|
@ -26,29 +26,23 @@
|
|||
<img src="/assets/menu-burger.png" alt="menu icon" onclick="menu_toggle()" />
|
||||
<menu>
|
||||
<a href="/">
|
||||
<img src="/assets/forum-logo.svg" alt="forum" />
|
||||
<h3>FORUM</h3>
|
||||
<img src="/assets/discord-logo.png" alt="discord" />
|
||||
<h3>DISCORD</h3>
|
||||
</a>
|
||||
<a href="/">
|
||||
<img src="/assets/steam-logo.png" alt="steam" />
|
||||
<h3>STEAM</h3>
|
||||
</a>
|
||||
<!--
|
||||
<a href="/">
|
||||
<img src="/assets/youtube-logo.png" alt="youtube" />
|
||||
<h3>YOUTUBE</h3>
|
||||
</a>
|
||||
<a href="/">
|
||||
<img src="/assets/twitter-logo.png" alt="twitter" />
|
||||
<h3>TWITTER</h3>
|
||||
</a>
|
||||
-->
|
||||
<a href="/">
|
||||
<img src="/assets/email-logo.png" alt="email us" />
|
||||
<h3>EMAIL US</h3>
|
||||
</a>
|
||||
<a href="/">
|
||||
<img src="/assets/mailing-list-logo.png" alt="mailing list" />
|
||||
<h3>MAILING LIST</h3>
|
||||
</a>
|
||||
<a href="/">
|
||||
<img src="/assets/press-kit-logo.png" alt="press kit" />
|
||||
<h3>PRESS KIT</h3>
|
||||
|
@ -86,40 +80,6 @@
|
|||
<source src="/assets/trailer/trailer.mp4" type="video/mp4">
|
||||
</video>
|
||||
</a>
|
||||
<a href="/game5.html" class="game">
|
||||
<img src="/assets/miniature/miniature.png" alt="GAME 5" />
|
||||
<video class="game-video" autoplay loop muted poster="/assets/miniature/miniature.png">
|
||||
<source src="/assets/trailer/trailer.mp4" type="video/mp4">
|
||||
</video>
|
||||
</a>
|
||||
<a href="/game6.html" class="game">
|
||||
<img src="/assets/miniature/miniature.png" alt="GAME 6" />
|
||||
<video class="game-video" autoplay loop muted poster="/assets/miniature/miniature.png">
|
||||
<source src="/assets/trailer/trailer.mp4" type="video/mp4">
|
||||
</video>
|
||||
</a>
|
||||
<a href="/game7.html" class="game">
|
||||
<img src="/assets/miniature/miniature.png" alt="GAME 7" />
|
||||
<video class="game-video" autoplay loop muted poster="/assets/miniature/miniature.png">
|
||||
<source src="/assets/trailer/trailer.mp4" type="video/mp4">
|
||||
</video>
|
||||
</a>
|
||||
<a href="/game8.html" class="game">
|
||||
<img src="/assets/miniature/miniature.png" alt="GAME 8" />
|
||||
<video class="game-video" autoplay loop muted poster="/assets/miniature/miniature.png">
|
||||
<source src="/assets/trailer/trailer.mp4" type="video/mp4">
|
||||
</video>
|
||||
</a>
|
||||
<a href="/game9.html" class="game">
|
||||
<img src="/assets/miniature/miniature.png" alt="GAME 9" />
|
||||
<video class="game-video" autoplay loop muted poster="/assets/miniature/miniature.png">
|
||||
<source src="/assets/trailer/trailer.mp4" type="video/mp4">
|
||||
</video>
|
||||
</a>
|
||||
</main>
|
||||
<div id="notif">
|
||||
<img id="notif-close" src="/assets/close.svg" alt="close button" onclick="document.getElementById('notif').style.display = 'none'" />
|
||||
<a href="/game0.html">BUY OUR LAST GAME NOW!</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
21
style.css
21
style.css
|
@ -81,27 +81,6 @@ nav > img {
|
|||
}
|
||||
}
|
||||
|
||||
#notif {
|
||||
position: fixed;
|
||||
margin: 1rem;
|
||||
padding: 0.5rem;
|
||||
right: 0px;
|
||||
bottom: 0px;
|
||||
background-color: orange;
|
||||
text-align: center;
|
||||
font-size: 2rem;
|
||||
}
|
||||
#notif a {
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
margin-right: 1rem;
|
||||
}
|
||||
|
||||
#notif-close {
|
||||
width: 45px;
|
||||
float: right;
|
||||
}
|
||||
|
||||
.games {
|
||||
margin: 0 auto;
|
||||
display: grid;
|
||||
|
|
Loading…
Reference in New Issue