commit 53c9cc890b39e9ea83f0ffb812c6d0c9fd0f11e5 Author: nemo Date: Sun Sep 1 23:58:40 2024 +0200 init diff --git a/close.svg b/close.svg new file mode 100644 index 0000000..982ca49 --- /dev/null +++ b/close.svg @@ -0,0 +1,13 @@ + + + + + + + diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..a600951 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,10 @@ +version: "3" + +services: + web: + container_name: "studio-siteweb" + image: "httpd" + ports: + - "6969:80" + volumes: + - ".:/usr/local/apache2/htdocs/" diff --git a/email-logo.png b/email-logo.png new file mode 100644 index 0000000..629aaaa Binary files /dev/null and b/email-logo.png differ diff --git a/forum-logo.svg b/forum-logo.svg new file mode 100644 index 0000000..4215888 --- /dev/null +++ b/forum-logo.svg @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + diff --git a/game.css b/game.css new file mode 100644 index 0000000..341eea2 --- /dev/null +++ b/game.css @@ -0,0 +1,43 @@ +.games { + margin: 0 auto; + display: grid; + gap: 1rem; + grid-template-columns: repeat(1, 1fr); +} + +@media (min-width: 600px) { + .games { grid-template-columns: repeat(2, 1fr); } +} + +@media (min-width: 900px) { + .games { grid-template-columns: repeat(3, 1fr); } +} + +.game { + color: white; + position: relative; +} + +.game p { + margin: 0; +} + +.game img { + width: 100%; + height: 100%; + object-fit: contain; +} + +.game-video{ + opacity: 0; + transition: 0.5s ease; + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} + +.game:hover .game-video { + opacity: 1; +} diff --git a/game0.html b/game0.html new file mode 100644 index 0000000..2ba4c17 --- /dev/null +++ b/game0.html @@ -0,0 +1,3 @@ +acceuil +
+ diff --git a/index.html b/index.html new file mode 100644 index 0000000..b70224d --- /dev/null +++ b/index.html @@ -0,0 +1,115 @@ + + + + + Bloub Bloub Studio + + + + + + +

Bloub Bloub Studio

+ +

OUR GAME :

+
+ + GAME 0 + + + + GAME 1 + + + + GAME 2 + + + + GAME 3 + + + + GAME 4 + + + + GAME 5 + + + + GAME 6 + + + + GAME 7 + + + + GAME 8 + + + + GAME 9 + + +
+
+ close button + BUY OUR LAST GAME NOW! +
+ + diff --git a/instagram-logo.png b/instagram-logo.png new file mode 100644 index 0000000..61c75cb Binary files /dev/null and b/instagram-logo.png differ diff --git a/mailing-list-logo.png b/mailing-list-logo.png new file mode 100644 index 0000000..d611289 Binary files /dev/null and b/mailing-list-logo.png differ diff --git a/miniature.png b/miniature.png new file mode 100755 index 0000000..90acdb8 Binary files /dev/null and b/miniature.png differ diff --git a/press-kit-logo.png b/press-kit-logo.png new file mode 100644 index 0000000..3cc1071 Binary files /dev/null and b/press-kit-logo.png differ diff --git a/steam-logo.png b/steam-logo.png new file mode 100644 index 0000000..9311211 Binary files /dev/null and b/steam-logo.png differ diff --git a/style.css b/style.css new file mode 100644 index 0000000..4a19285 --- /dev/null +++ b/style.css @@ -0,0 +1,57 @@ +html { + background-color: black; +} + +h1, h2 { + color: white; + text-align: center; +} + +nav { + display: flex; + flex-wrap: wrap; + color: white; + text-align: center; +} +nav a { + margin-left: auto; + margin-right: auto; + padding-left: 1rem; + padding-right: 1rem; + padding-bottom: 1rem; +} + +nav a img { + width: 60px; + height: 60px; +} +nav a:hover img { + width: 75px; + height: 75px; + transition: 0.1s ease; +} + +nav a h3 { + margin: 0px; +} + +#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; +} diff --git a/tik-tok-logo.png b/tik-tok-logo.png new file mode 100644 index 0000000..5f1512c Binary files /dev/null and b/tik-tok-logo.png differ diff --git a/trailer.mp4 b/trailer.mp4 new file mode 100644 index 0000000..e0ff5b1 Binary files /dev/null and b/trailer.mp4 differ diff --git a/twitter-logo.png b/twitter-logo.png new file mode 100644 index 0000000..30d0343 Binary files /dev/null and b/twitter-logo.png differ