diff --git a/css/home.css b/css/home.css index 897274b..91028e9 100644 --- a/css/home.css +++ b/css/home.css @@ -17,56 +17,6 @@ height: 200px; } -/* Section des dons */ - -#don > div { - display: flex; - flex-direction: row; - flex-wrap: wrap; - justify-content: space-evenly; -} - -#don button { - flex-grow: 1; - width: 3em; - color: white; - font-size: 2em; - border: none; - font-family: MonTrappist; - margin: 0.2em; - padding: 0.3em; - background: var(--primary-bg-color); - background: linear-gradient(0deg,rgba(136, 0, 255, 1) 0%, rgba(255, 191, 62, 1) 50%, rgba(255, 78, 0, 1) 100%); - box-shadow: -5px 5px 0px var(--accent-yellow), -10px 10px 0px var(--accent-orange), -15px 15px 0px var(--accent-violet); -} - -#don > hr { - margin-top: 1em; -} - -#don p { - text-align: justify; - text-align: center; -} - -@keyframes bang { - from { - transform: translate3d(0,0,0); - opacity: 1; - } -} - -.btn-pop i { - position: absolute; - display: block; - left: 50%; - top: 0; - width: 3px; - height: 8px; - background: red; - opacity: 0; -} - /* Barre de progression */ .progression { diff --git a/index.html b/index.html index ea77b3b..33387a6 100644 --- a/index.html +++ b/index.html @@ -9,7 +9,6 @@ - Camp Interhack @@ -93,33 +92,8 @@

Et nous avons reçu

? %
-

des dons dont nous avons besoin

+

des dons dont nous avons besoin (voir le détail des comptes)

- -

- Faire un don -

-
-

Nous avons besoin de sous avant le débût du Camp pour financer l'achat de fournitures, payer la réservation du lieu et monter la logistique.

-
- - - - - - - -
- -
-
-

Nous estimons avoir un budget de XXX et être autour de 200, et aurons donc besoin d'au moins autant pour que le camp soit à l'équilibre.

- Voir le détail des comptes -
-
- - -

Iels y participent

@@ -157,5 +131,5 @@ - + diff --git a/js/pop.js b/js/pop.js deleted file mode 100644 index d5f3ef9..0000000 --- a/js/pop.js +++ /dev/null @@ -1,21 +0,0 @@ -document.querySelectorAll('button').forEach(function(button) { - button.addEventListener('mouseenter', function() { - function random(max) { - return Math.random() * (max - 0) + 0; - } - - var c = document.createDocumentFragment(); - for (var i = 0; i < 100; i++) { - var styles = 'transform: translate3d(' + (random(500) - 250) + 'px, ' + - (random(200) - 150) + 'px, 0) rotate(' + random(360) + 'deg);' + - 'background: hsla(' + random(360) + ', 100%, 50%, 1);' + - 'animation: bang 700ms ease-out forwards;' + - 'opacity: 0'; - - var e = document.createElement("i"); - e.style.cssText = styles; - c.appendChild(e); - } - button.appendChild(c); - }); -});