Compare commits
2 commits
a12893556b
...
93a1ce1502
| Author | SHA1 | Date | |
|---|---|---|---|
| 93a1ce1502 | |||
| 9c7c0d78f8 |
8 changed files with 6 additions and 92 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
FROM docker.io/nginx:1.29-alpine
|
FROM docker.io/nginx:1.29-alpine
|
||||||
|
|
||||||
COPY index.html poster.html guide.html contact.html /usr/share/nginx/html
|
COPY index.html poster.html guide.html /usr/share/nginx/html
|
||||||
COPY assets /usr/share/nginx/html/assets
|
COPY assets /usr/share/nginx/html/assets
|
||||||
COPY css /usr/share/nginx/html/css
|
COPY css /usr/share/nginx/html/css
|
||||||
COPY js /usr/share/nginx/html/js
|
COPY js /usr/share/nginx/html/js
|
||||||
|
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 17 KiB |
64
contact.html
64
contact.html
|
|
@ -1,64 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="fr">
|
|
||||||
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<link rel="stylesheet" href="css/base.css">
|
|
||||||
<link rel="stylesheet" href="css/contact.css">
|
|
||||||
<link rel="stylesheet" href="css/drag.css">
|
|
||||||
<script src="js/drag.js" defer></script>
|
|
||||||
<link rel="icon" type="image/x-icon" href="assets/stickers/ecran.png">
|
|
||||||
<title>Camp Interhack 2026 – Contact</title>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<nav>
|
|
||||||
<a href="index.html">maison</a>
|
|
||||||
<a href="guide.html">guide</a>
|
|
||||||
<a href="poster.html">poster</a>
|
|
||||||
<a href="contact.html" class="current">contact</a>
|
|
||||||
</nav>
|
|
||||||
|
|
||||||
<main>
|
|
||||||
<img class="draggable randomStart" src="assets/stickers/ecran.png" alt="">
|
|
||||||
<img class="draggable randomStart" src="assets/stickers/ferasouder.png" alt="">
|
|
||||||
<img class="draggable randomStart" src="assets/stickers/machineacoudre.png" alt="">
|
|
||||||
<img class="draggable randomStart" src="assets/stickers/tracteur.png" alt="">
|
|
||||||
<h1>
|
|
||||||
<span id="camp" class="draggable">camp</span>
|
|
||||||
<br>
|
|
||||||
<span id="interhack" class="draggable">interhack</span>
|
|
||||||
<span class="draggable">contact</span>
|
|
||||||
</h1>
|
|
||||||
<h2>
|
|
||||||
</h2>
|
|
||||||
<section id="contact">
|
|
||||||
<div>
|
|
||||||
<h3>Mail :</h3>
|
|
||||||
<a href="mailto:orga@camp.interhacker.space">orga@camp.interhacker.space</a>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<h3>Matrix :</h3>
|
|
||||||
<a href="https://matrix.to/#/#camp-space:matrix.interhacker.space" class="matrix-link">#interhack:matrix.interhacker.space</a>
|
|
||||||
</div>
|
|
||||||
</section>
|
|
||||||
</main>
|
|
||||||
<footer>
|
|
||||||
<div>
|
|
||||||
<h2>Association</h2>
|
|
||||||
<a href="assets/Camp-Interhack_Statuts.pdf">statuts</a>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<h2>Interhack</h2>
|
|
||||||
<a href="https://interhacker.space">accueil</a>
|
|
||||||
<a href="https://wiki.interhacker.space">wiki</a>
|
|
||||||
</div>
|
|
||||||
<div>
|
|
||||||
<h2>Site Web</h2>
|
|
||||||
<a href="https://git.interhacker.space/interhack/2026.camp.public.website">source</a>
|
|
||||||
</div>
|
|
||||||
</footer>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
</html>
|
|
||||||
|
|
@ -47,10 +47,6 @@ main h1, main h2, main h3 {
|
||||||
z-index: 20;
|
z-index: 20;
|
||||||
}
|
}
|
||||||
|
|
||||||
main h1 span, main h2 span, main h3 {
|
|
||||||
background-color: #000000b8;
|
|
||||||
}
|
|
||||||
|
|
||||||
main h1 {
|
main h1 {
|
||||||
position: relative;
|
position: relative;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
@ -187,12 +183,14 @@ figcaption {
|
||||||
font-family: segoesc;
|
font-family: segoesc;
|
||||||
float: left;
|
float: left;
|
||||||
margin-left: 10%;
|
margin-left: 10%;
|
||||||
|
line-height: 0.8em;
|
||||||
}
|
}
|
||||||
|
|
||||||
#interhack {
|
#interhack {
|
||||||
text-shadow: -5px 5px 0px var(--accent-orange), -10px 10px 0px var(--accent-violet);
|
text-shadow: -5px 5px 0px var(--accent-orange), -10px 10px 0px var(--accent-violet);
|
||||||
color: var(--accent-yellow);
|
color: var(--accent-yellow);
|
||||||
margin-right: 10%;
|
margin-right: 10%;
|
||||||
|
line-height: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
#progress {
|
#progress {
|
||||||
|
|
|
||||||
|
|
@ -1,15 +0,0 @@
|
||||||
#contact {
|
|
||||||
display: flex;
|
|
||||||
align-items: last baseline;
|
|
||||||
gap: 2em;
|
|
||||||
justify-content: space-between;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 span:nth-of-type(n+3) {
|
|
||||||
position: relative;
|
|
||||||
text-align: center;
|
|
||||||
font-size: clamp(1.5rem, 5vw, 5rem);
|
|
||||||
font-family: segoesc;
|
|
||||||
display: block;
|
|
||||||
margin: 1em auto 0.5em auto;
|
|
||||||
}
|
|
||||||
|
|
@ -23,7 +23,6 @@ BISOUS
|
||||||
<a href="index.html">maison</a>
|
<a href="index.html">maison</a>
|
||||||
<a href="guide.html" class="current">guide</a>
|
<a href="guide.html" class="current">guide</a>
|
||||||
<a href="poster.html">poster</a>
|
<a href="poster.html">poster</a>
|
||||||
<a href="contact.html">contact</a>
|
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<main>
|
<main>
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,6 @@
|
||||||
<a href="index.html" class="current">maison</a>
|
<a href="index.html" class="current">maison</a>
|
||||||
<a href="guide.html">guide</a>
|
<a href="guide.html">guide</a>
|
||||||
<a href="poster.html">poster</a>
|
<a href="poster.html">poster</a>
|
||||||
<a href="contact.html">contact</a>
|
|
||||||
</nav>
|
</nav>
|
||||||
<main>
|
<main>
|
||||||
|
|
||||||
|
|
@ -121,12 +120,11 @@
|
||||||
</a>
|
</a>
|
||||||
<a href="https://lebib.org"><img class="logo" src="assets/logos/lebib.png" alt="Le Bib Net"></a>
|
<a href="https://lebib.org"><img class="logo" src="assets/logos/lebib.png" alt="Le Bib Net"></a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="participants">
|
<div class="participants">
|
||||||
<a href="https://hackstub.eu/"><img class="logo" src="assets/logos/hackstub.svg" alt="La Hackstub"></a>
|
<a href="https://hackstub.eu/"><img class="logo" src="assets/logos/hackstub.svg" alt="La Hackstub"></a>
|
||||||
<a href="https://fuz.re"><img class="logo" src="assets/logos/fuz.png" alt="Le Fuz"></a>
|
<a href="https://fuz.re"><img class="logo" src="assets/logos/fuz.png" alt="Le Fuz"></a>
|
||||||
<a href="https://labolyon.fr/"><img class="logo" src="assets/logos/lol_logo_txt.png" alt="Le Laboratoire Ouvert Lyonnais"></a>
|
<a href="https://labolyon.fr/"><img class="logo" src="assets/logos/lol_logo_txt.png" alt="Le Laboratoire Ouvert Lyonnais"></a>
|
||||||
<a href="https://fdn.fr/"><img class="logo" src="assets/logos/fdn.png" alt="La French Data Network"></a>
|
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
<footer>
|
<footer>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
<!DOCTYPE html>
|
<html lang="en">
|
||||||
<html lang="fr">
|
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
|
|
@ -15,9 +14,8 @@
|
||||||
<body>
|
<body>
|
||||||
<nav>
|
<nav>
|
||||||
<a href="index.html">maison</a>
|
<a href="index.html">maison</a>
|
||||||
<a href="guide.html">guide</a>
|
<a href="guide.html" >guide</a>
|
||||||
<a href="poster.html" class="current">poster</a>
|
<a href="poster.html" class="current">poster</a>
|
||||||
<a href="contact.html">contact</a>
|
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue