diff --git a/education_fair.png b/education_fair.png new file mode 100644 index 0000000..1251148 Binary files /dev/null and b/education_fair.png differ diff --git a/harrison.png b/harrison.png new file mode 100644 index 0000000..5426336 Binary files /dev/null and b/harrison.png differ diff --git a/index.html b/index.html index dcff774..2962d93 100644 --- a/index.html +++ b/index.html @@ -8,15 +8,48 @@
- + + +
-
- -

- Rowan is very silly. -

+
+ +
+

+ We are a small Australian FTC team. +

+
+ +
+
+ +
+

Harrison C - Programming Main

+

Harrison writes the manually controlled opmodes and switches primarily to autonomous when the competition rolls around. He enjoys snowboarding, programming and gaming. He created this website with HTML / CSS.

+
+
+
+
+

Marley R - Programming & Build

+

Marley switches between building the robot to coding the robot, anything from cable management to tuning roadrunner for future autonomous endeavours. He loves rock climbing and programming.

+
+ +
+
+ +
+

Taha S - Coordination & Build

+

Taha coordinates the team meetings and presentations, ensuring that everyone is available to show up. He also builds the robot alonside Marley. He loves coffee and stealing code from github (yes I'll change this later).

+
+
+
+
+

Rowan F - Outreach & Documentation

+

Rowan is an integral member of the team - he manages the portfolio for outreach, and, as an aspiring lawyer, does an excellent job of maintaining the rules & ensuring our robot complies.

+
+
diff --git a/logo.png b/logo.png new file mode 100644 index 0000000..791620d Binary files /dev/null and b/logo.png differ diff --git a/marley.png b/marley.png new file mode 100644 index 0000000..42a3b41 Binary files /dev/null and b/marley.png differ diff --git a/rowan.png b/rowan.png new file mode 100644 index 0000000..60aa5d9 Binary files /dev/null and b/rowan.png differ diff --git a/style.css b/style.css index f466dd2..97a939c 100644 --- a/style.css +++ b/style.css @@ -1,8 +1,15 @@ +:root { + --primary: #1d2066; + --accent: #212475; + --background: #191b4f; + --text: #FFFFFF; +} + .header { margin-top: 0px; padding-top: 0px; border-top: 0px; - background-color: #271f59; + background-color: var(--primary); height: 80px; width: 100%; position: fixed; @@ -14,7 +21,7 @@ body { padding-top: 0px; margin-top: 90px; border-top: 0px; - background-color: #100030; + background-color: var(--background); } .tile_img { @@ -22,27 +29,53 @@ body { margin-right: 20px; } +a { + color: var(--text); + text-decoration: none; +} + .after_image { flex: 1; } -.text_block { +.image_and_text_container { display: flex; align-items: center; - background-color: #1d1742; + background-color: var(--primary); width: 80%; border-style: solid; border-width: 20px; color: white; - font-size: 50px; + font-size: 40px; border-radius: 10px; - border-color: #1d1742; + border-color: var(--primary); margin-left: auto; margin-right: auto; margin-top: 20px; padding: 20px; } +.text_column { + display: flex; + flex-direction: column; + text-align: justify; + align-items: center; + background-color: var(--accent); + color: white; + font-size: 40px; + border-color: var(--accent); + margin-left: auto; + margin-right: auto; + margin: 60px; + padding: 30px; + border-radius: 25px; + hyphens: auto; +} + +img { + border-radius: 25px; +} + @keyframes rainbow { 0% { background-position: 0% 50%; @@ -52,7 +85,14 @@ body { } } -.rainbow-text { +.paragraph_heading { + margin: 20px; + display: flex; + font-size: 50px; + color: white; +} + +.rainbow_text { background: linear-gradient(90deg, #FF0000, #FFA500, #FFFF00, #008000, #00FFFF, #0000FF, #800080, #FF0000); background-size: 50% 100%; -webkit-background-clip: text; @@ -63,14 +103,14 @@ body { } .header_button { - background-color: #271f59; + background-color: var(--primary); border-width: 0; - color: #ffffff; + color: var(--text); font-size: 50px; height: 80px; margin-left: 50px; } .header_button:hover { - background-color: #100030; + background-color: var(--accent); } diff --git a/taha.png b/taha.png new file mode 100644 index 0000000..d8a2681 Binary files /dev/null and b/taha.png differ