Skip to content

Commit

Permalink
publish #2
Browse files Browse the repository at this point in the history
  • Loading branch information
jmesrje committed Aug 9, 2024
1 parent 8d97390 commit dd3db41
Show file tree
Hide file tree
Showing 14 changed files with 421 additions and 210 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2024 Canary Softworks
Copyright (c) 2024 Lumin Labs

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
<div align="center">

# Lumin Labs • <svg version="1.2" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 490 360" width="30" height="22"><defs><linearGradient id="P" gradientUnits="userSpaceOnUse"/><linearGradient id="g1" x2="1" href="#P" gradientTransform="matrix(0,-359.46,488.66,0,244.792,360)"><stop stop-color="#8bfe78"/><stop offset="1" stop-color="#aee189"/></linearGradient></defs><style>.a{fill:url(#g1)}</style><path class="a" d="m116.6 299.9v60.1h-36.4q-12 0-18.9-6.9l-53.2-51.4q-4.3-4.9-6.1-8.4-1.5-3.9-1.5-10v-282.8h65.7v270.3q0 3.1 1.5 4.1l25 24q1.5 1 4.1 1zm372.5-126.1v186.2h-65.8v-173.7q0-3.1-1.5-4.6l-25.2-23.2q-1-1-3.6-1h-27q-2.8 0-3.8 1l-25.5 23.2q-1.5 1.5-1.5 4.6v4.5 169.2h-65.7v-173.7q0-3.1-1.6-4.6l-25.2-23.2q-1-1-3.6-1h-27.2q-2.6 0-3.6 1l-25.5 23.2q-1.5 1.5-1.5 4.6v173.7h-65.7v-261.4h65.7v21.9l15.5-15q6.9-6.9 18.9-6.9h39.5q11.7 0 18.8 6.9l37.7 35.9 39-35.9q7.4-6.9 18.9-6.9h39.7q11.5 0 18.6 6.9l53.3 50.4q4.3 3.9 6.1 7.9 1.8 3.9 1.8 10z"/></svg>
# Lumin Labs

The official landing website for Lumin Labs

[![Lumin](https://github-readme-stats-git-masterorgs-github-readme-stats-team.vercel.app/api?username=rickstaa&include_orgs=true)](https://github.com/anuraghazra/github-readme-stats)

</div>
Binary file removed assets/banner.png
Binary file not shown.
Binary file added assets/default.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 0 additions & 12 deletions css/redirect.css

This file was deleted.

101 changes: 91 additions & 10 deletions css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ body {
background-color: #090a0f;
}

img {
user-select: none;
}

.navbar {
display: flex;
justify-content: space-between;
Expand All @@ -20,7 +24,8 @@ body {
gap: 10px;
}

.nav-buttons button {
.nav-buttons a,
button {
font-family: "JetBrains Mono";
font-size: medium;
border: solid;
Expand All @@ -31,39 +36,100 @@ body {
padding: 10px 20px;
cursor: pointer;
transition: 0.3s;
text-decoration: none;
}

.nav-buttons button:hover {
.nav-buttons a:hover,
button:hover {
background-color: #1f2025;
border-color: #1f2025;
}

.intro-text {
padding-top: 5%;
padding-left: 2%;
.page-users {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
gap: 22px;
}

.page-users.developers,
.page-users.staff,
.page-users.admins,
.page-users.moderators,
.page-users.contributors {
grid-template-rows: 17em;
}

.page-users.qa {
grid-template-rows: 17em 17em 17em;
}

.page-user {
background-color: #0c0d11;
border-radius: 8px;
text-align: center;
}

.page-user img {
display: block;
margin-left: auto;
margin-right: auto;
border-radius: 100%;
}

.page-user h3 {
font-family: "JetBrains Mono";
font-weight: 600;
font-size: 150%;
color: whitesmoke;
}

.page-text {
padding-top: 6em;
padding-left: 2.5em;
padding-right: 2.5em;
padding-bottom: 2.5em;
}

.intro-text h1 {
.page-text h1 {
font-family: "JetBrains Mono";
font-weight: 1000;
font-size: 350%;
color: whitesmoke;
}

.intro-text description {
.page-text h2 {
font-family: "JetBrains Mono";
font-weight: 600;
font-size: 275%;
color: whitesmoke;
padding-top: 1.5em;
}

.page-text p.description {
font-family: "JetBrains Mono";
font-size: 150%;
color: grey;
}

.intro-buttons {
.page-text p.description.small {
font-size: 100%;
}

.page-text p,
li {
font-family: "JetBrains Mono";
font-size: 150%;
color: whitesmoke;
}

.page-buttons {
padding-left: 2%;
padding-top: 5%;
display: flex;
gap: 20px;
}

.intro-buttons button {
.page-buttons a {
font-family: "JetBrains Mono";
font-size: x-large;
background: none;
Expand All @@ -72,6 +138,21 @@ body {
color: whitesmoke;
cursor: pointer;
width: 17%;
height: 50px;
line-height: 50px;
color: black;
text-align: center;
text-decoration: none;
}

::-webkit-scrollbar {
width: 8px;
}

::-webkit-scrollbar-thumb {
background: rgb(97, 97, 97);
border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
background: rgb(73, 73, 73);
}
59 changes: 32 additions & 27 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,35 +1,40 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Lumin Labs</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" href="/css/styles.css">
</head>
<head>
<meta content="Lumin Labs" property="og:title" />
<meta content="Innovating and developing within the gaming industry" property="og:description" />
<meta content="https://lumin-dev.github.io" property="og:url" />
<meta content="https://lumin-dev.github.io/assets/logo.svg" property="og:image" />
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Lumin Labs</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" href="/css/styles.css">
</head>

<body>
<nav class="navbar">
<div class="logo">
<img src="assets/logo.svg" alt="Logo">
</div>
<div class="nav-buttons">
<button>🔆</button>
<button>About</button>
<button>Projects</button>
<button>Branding</button>
</div>
</nav>
<div class="intro-text">
<h1>Lumin Labs</h1>
<description>A backend gaming development industry.</description>
<body>
<nav class="navbar">
<div class="logo">
<a href="/index.html"><img src="/assets/logo.svg" alt="Logo"></a>
</div>

<div class="intro-buttons">
<button style="background-color: #8BFF78" ;">About us</button>
<button style="background-color: #78aeff" ;">Projects</button>
<div class="nav-buttons">
<button>🔆</button>
<a href="/pages/about.html">About</a>
<a href="/pages/projects.html">Projects</a>
<a href="/pages/team.html">Team</a>
<a href="/pages/branding.html">Branding</a>
</div>
</body>
</nav>
<div class="page-text">
<h1>Lumin Labs</h1>
<p class="description">Innovating and developing within the gaming industry.</p>
</div>

<div class="page-buttons">
<a href="/pages/about.html" style="background-color: #8BFF78" ;">About Us</a>
<a href="/pages/projects.html" style="background-color: #78aeff" ;">Projects</a>
</div>
</body>

</html>
48 changes: 48 additions & 0 deletions pages/about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About - Lumin Labs</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" href="/css/styles.css">
</head>

<body>
<nav class="navbar">
<div class="logo">
<a href="/index.html"><img src="/assets/logo.svg" alt="Logo"></a>
</div>
<div class="nav-buttons">
<button>🔆</button>
<a href="/pages/about.html">About</a>
<a href="/pages/projects.html">Projects</a>
<a href="/pages/team.html">Team</a>
<a href="/pages/branding.html">Branding</a>
</div>
</nav>
<div class="page-text">
<h1>About Us</h1>
<p>A short summary of our goals and why we are here today.</p>
<h2>Goals</h2>
<ol>
<li>Create an inclusive environment open to anyone with any skillset</li>
<li>Work on projects that benefit the people in the open source software community</li>
<li>Create high quality games that are enjoyed and cherrished by their players</li>
</ol>
<h2>What are we?</h2>
<p>We are a non-profit organization that creates open source software for our community. We value feedback first
and foremost and have been reiterating on everything we make since we were established as Canary Softworks
in <i>2021.</i></p>
<h2>Brief history</h2>
<p>Our team has been interested in creating open source software since 2021 when we were founded by James under
the name Canary Softworks. At this point (and at the time or writing) we still focus on Roblox-centric
projects. Since then, we have made many contributions for our partners and commmunity.</p>
<h2>How we got here today</h2>
<p>Through hard work and discipline. Some things may not sound like they are possible, but they can be if you
put in the effort. That is what we have applied here!</p>
</div>
</body>

</html>
58 changes: 58 additions & 0 deletions pages/branding.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Branding Guidelines - Lumin Labs</title>
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link rel="stylesheet" href="/css/styles.css">
</head>

<body>
<nav class="navbar">
<div class="logo">
<a href="/index.html"><img src="/assets/logo.svg" alt="Logo"></a>
</div>
<div class="nav-buttons">
<button>🔆</button>
<a href="/pages/about.html">About</a>
<a href="/pages/projects.html">Projects</a>
<a href="/pages/team.html">Team</a>
<a href="/pages/branding.html">Branding</a>
</div>
</nav>
<div class="page-text">
<h1>Branding Guidelines</h1>
<p>Lumin Labs is a team of well-educated individuals that innovate and develop within the gaming industry. The
brand and all of its visual elements are what got us into this position today. Below you will find our
offical branding kit and guidelines for almost all usage covered.</p>
<h2>Logos</h2>
<p>Using our logos in a way that is easily recognizable is acceptable, only if the main topic or link points to
something that is owned or created by Lumin Labs. Some <b>do's</b> and <b>dont's</b> are listed below.</p>
<ul>
<li>❌ Using our logo to promote an asset of yours</li>
<li>❌ Altering the color or style of our logo without our premission</li>
<li>❌ Taking full or partial credit for our logo and its design</li>
<li>✔️ Using our logo to link to one of our projects</li>
<li>✔️ Using our logo to promote something you worked on in part with Lumin Labs</li>
<li>✔️ Using our logo to mention something we have worked on</li>
</ul>
<h2>Colors</h2>
<p>We do not have any exact brand colors, although we do have some distinct logo colors listed below.</p>
<ul>
<li style="color: #DD4842;">Snacky Red: #DD4842</li>
<li style="color: #FF9347;">Aegis Orange: #FF9347</li>
<li style="color: #ffe063;">Lumin Yellow: #ffe063</li>
<li style="color: #8BFF78;">Lumin Green: #8BFF78</li>
</ul>
<h2>Typography</h2>
<p>We mainly use open-sourced fonts for our code and branding. A list can be found below.</p>
<ul>
<li>JetBrains Mono</li>
<li>Inter</li>
</ul>
</div>
</body>

</html>
Loading

0 comments on commit dd3db41

Please sign in to comment.