]> OzVa Git service - insects/commitdiff
Base site
authorMax Value <greenwoodw50@gmail.com>
Mon, 6 Oct 2025 02:06:21 +0000 (03:06 +0100)
committerMax Value <greenwoodw50@gmail.com>
Mon, 6 Oct 2025 02:06:21 +0000 (03:06 +0100)
fonts/Fimm.otf [new file with mode: 0644]
fonts/Fimm.ttf [new file with mode: 0644]
fonts/Fimm.woff [new file with mode: 0644]
fonts/TT2020Base-Regular.ttf [new file with mode: 0644]
fonts/TT2020Base-Regular.woff2 [new file with mode: 0644]
index.html
media/finn.jpg [new file with mode: 0644]
media/tegan.jpg [new file with mode: 0644]
media/will.jpeg [new file with mode: 0644]
media/will.jpg [new file with mode: 0644]
style.css

diff --git a/fonts/Fimm.otf b/fonts/Fimm.otf
new file mode 100644 (file)
index 0000000..d1f06a7
Binary files /dev/null and b/fonts/Fimm.otf differ
diff --git a/fonts/Fimm.ttf b/fonts/Fimm.ttf
new file mode 100644 (file)
index 0000000..5e5fae3
Binary files /dev/null and b/fonts/Fimm.ttf differ
diff --git a/fonts/Fimm.woff b/fonts/Fimm.woff
new file mode 100644 (file)
index 0000000..8296365
Binary files /dev/null and b/fonts/Fimm.woff differ
diff --git a/fonts/TT2020Base-Regular.ttf b/fonts/TT2020Base-Regular.ttf
new file mode 100644 (file)
index 0000000..625aa8d
Binary files /dev/null and b/fonts/TT2020Base-Regular.ttf differ
diff --git a/fonts/TT2020Base-Regular.woff2 b/fonts/TT2020Base-Regular.woff2
new file mode 100644 (file)
index 0000000..5200cde
Binary files /dev/null and b/fonts/TT2020Base-Regular.woff2 differ
index 29a613a739367060f077295f7e826b1893927046..30037342625980f5527afddaa13c80b8a18b1f3d 100644 (file)
@@ -1,10 +1,40 @@
 <!DOCTYPE html>
-<html lang="">
+<html lang="en">
   <head>
     <meta charset="utf-8">
     <title>All Insects</title>
+       <link rel="stylesheet" href="style.css">
+       <link rel="stylesheet" href="font.css">
   </head>
   <body>
-       <h1>All Insects</h1>
+       <header>
+               <h1>All Insects</h1>
+               <h2>[Studios]</h2>
+       </header>
+       <main>
+               <section>
+                       <h2>INT. DAY - WEBSITE (BACKGROUND)</h2>
+                       <p>
+                       All Insects Studio is a production company comprised of new talent with a focus on the strange and unusual. We aim to experiment with different forms of media - film, live TV, radio, multimedia ARGs - highlighting our own experiences and observations about the strangeness of the world.
+                       </p>
+                       <p>
+                       Through endless toil and late nights fueled by only the pressing force of creativity, the members of All Insects endeavour to bring forth hallucinations into the world.
+                       </p>
+                       <ul>
+                               <li>
+                                       <b>Finn Downton, Writer/Director.</b> Finn draws ideas from the depths and forms them into scripts full of meaning and strange imagery. He is a recent graduate of the University of Salford, and draws inspiration from his past, spinning explorations of his trauma with his current passions and obsessions. He enjoys the sensation of being torn from a barbed hook.
+                               </li>
+                               <img src="media/finn.jpg" id="finn" />
+                               <li>
+                                       <b>Will Greenwood, Producer.</b> With experience in TV Production but on a break from the gallery, Will has a number of large projects (graduate and otherwise) under his belt. He enjoys Finns scripts and call-sheets.
+                               </li>
+                               <img src="media/will.jpg" id="will" />
+                               <li>
+                                       <b>Tegan Blake-Barnard, Production Designer.</b> In the final year of her degree, Tegan draws inspiration from all things obscure and fantastical. Her background in oil painting allows her to approach every new project with an artistic flair. She enjoys playing god and breathing life into any messed up ideas Will and Finn can come up with.
+                               </li>
+                               <img src="media/tegan.jpg" id="tegan" />
+                       </ul>
+               </section>
+       </main>
   </body>
 </html>
diff --git a/media/finn.jpg b/media/finn.jpg
new file mode 100644 (file)
index 0000000..fb7f689
Binary files /dev/null and b/media/finn.jpg differ
diff --git a/media/tegan.jpg b/media/tegan.jpg
new file mode 100644 (file)
index 0000000..26a39e9
Binary files /dev/null and b/media/tegan.jpg differ
diff --git a/media/will.jpeg b/media/will.jpeg
new file mode 100644 (file)
index 0000000..8679174
Binary files /dev/null and b/media/will.jpeg differ
diff --git a/media/will.jpg b/media/will.jpg
new file mode 100644 (file)
index 0000000..bbadd2d
Binary files /dev/null and b/media/will.jpg differ
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..c095b2cce1d730e6da16bdec4808c516b5997f36 100644 (file)
--- a/style.css
+++ b/style.css
@@ -0,0 +1,81 @@
+/* Fimm Font import */
+
+@font-face {
+       font-family: "Fimm";
+       src:
+       url("fonts/Fimm.otf") format("opentype"),
+       url("fonts/Fimm.woff") format("woff"),
+       url("fonts/Fimm.ttf");
+}
+
+@font-face {
+       font-family: "TT2020";
+       src:
+       url("fonts/TT2020Base-Regular.woff2") format("woff2"),
+       url("fonts/TT2020Base-Regular.ttf");
+}
+
+/* Header styling */
+
+header {
+       font-size: 1.8em;
+       font-family: sans-serif;
+       padding: 50px 100px 20px 100px;
+}
+
+header > h1 {
+       margin-top: 0;
+       font-family: "Fimm", serif;
+}
+
+header > h2 {
+       margin: -1.8em 0 0 4em;
+       font-size: 1em;
+       transform: skew(-0.5rad);
+}
+
+/* Main section */
+
+main {
+       font-family: "TT2020", monospace;
+       padding: 20px 50px 50px 50px;
+       line-height: 1.2;
+}
+
+section {
+       width: min(100%, 650px);
+}
+
+@media (max-width: 1250px) {
+       /* Formatting for mobile */
+       img {
+               width: min(100%, 200px);
+       }
+}
+
+/* Variables for the photo arrangement to make it easier to tweak */
+:root {
+       --x: 750px;
+       --y: 220px;
+}
+
+@media (min-width: 1250px) {
+       /* Formatting for computer */
+
+       img {
+               width: 300px;
+               position: absolute;
+       }
+       #finn {
+               top: var(--y);
+               left: var(--x);
+       }
+       #will {
+               top: calc(var(--y) + 170px);
+               left: calc(var(--x) + 50px);
+       }
+       #tegan {
+               top: calc(var(--y) + 350px);
+               left: calc(var(--x) + 25px);
+       }
+}