Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

I hope to join your slack community. #19

Open
wants to merge 57 commits into
base: feature/job-board-rules
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
1fa04b6
Merge pull request #5 from stl-tech/fix/admin-update
beccastevens May 24, 2018
825b08f
CoC: A couple small additions
booch Jun 21, 2018
8934ff5
Update member-handbook.md
beccastevens Oct 31, 2018
3df322c
Update code-of-conduct.md
beccastevens Oct 31, 2018
568a95a
Merge pull request #8 from stl-tech/update-mod-list-1
thetristan May 5, 2019
c3930a8
Merge pull request #9 from stl-tech/update-mod-list
thetristan May 5, 2019
9868492
Merge pull request #7 from booch/patch-2
thetristan May 5, 2019
8cee65b
Update CoC
thetristan May 5, 2019
7b720e5
Remove Rebecca, correct typo in Ryan's name
thetristan May 5, 2019
6d2cedf
Merge pull request #11 from stl-tech/tb/update-mod-list
ryuhhnn May 6, 2019
565c9bf
Merge pull request #10 from stl-tech/tb/update-coc-may-2019
ryuhhnn May 6, 2019
31f15ac
Update CoC to remove Tristan, Ryan
thetristan Jan 6, 2020
bb95b69
Update Member Handbook to remove Tristan, Ryan
thetristan Jan 6, 2020
dd8ed36
Merge pull request #12 from stl-tech/tb/update-coc
thetristan Jan 7, 2020
e47d7f4
Merge pull request #13 from stl-tech/tb/update-handbook
thetristan Jan 7, 2020
73f9568
correct typos, add small amount of content to CoC and Handbook
Jan 8, 2020
610571f
add silug
Jan 8, 2020
052a27a
re-add Rebecca
Jan 8, 2020
51875e9
move new not-public note to new line
Jan 8, 2020
002ebbe
Merge pull request #14 from stl-tech/becca-content-edits
beccastevens Jan 8, 2020
216c826
Merge pull request #15 from stl-tech/add-steven
beccastevens Jan 8, 2020
a154c58
the triumphant return of rebecca
Jan 8, 2020
26f1ad1
remove merge garbage, derp
Jan 8, 2020
f816643
Merge pull request #16 from stl-tech/re-add-rebecca
beccastevens Jan 13, 2020
8d26eda
remove rebecca again :(
Mar 5, 2020
550b729
Merge pull request #17 from stl-tech/remove-rebecca
beccastevens Mar 17, 2020
7e8a63e
Community Inviter link
sehqlr Apr 21, 2020
c27247c
Add Community Inviter embed code to homepage
sehqlr Apr 21, 2020
9ab9cd0
trying a fix for netlify
sehqlr Apr 21, 2020
5d28bf9
removing embed code
sehqlr Apr 21, 2020
75db69a
trying embed code on slack.md
sehqlr Apr 21, 2020
0ec4515
"reverting" embed code
sehqlr Apr 21, 2020
2269931
target blank y'all
sehqlr Apr 21, 2020
95c966e
Update slack.md
Hellmark Sep 2, 2021
eff7a16
Update slack.md
Hellmark Sep 2, 2021
75549a3
Removing missing dependency
sehqlr Sep 3, 2021
9acb8dc
Added replacement theme, which is also the same theme
sehqlr Sep 3, 2021
9fa5050
Change link to Markdown link, don't worry about target blank
sehqlr Sep 3, 2021
a2c9537
Update version number of Hugo to current
sehqlr Sep 3, 2021
86facaa
Add nix env
sehqlr Sep 3, 2021
cf281f9
Ignore public folder
sehqlr Sep 3, 2021
a6d1d27
Fixing?? the version number
sehqlr Sep 3, 2021
0b129fb
change whole site to plain html, css and jquery
Sep 3, 2021
e359bf7
Switch globals to production only in netlify.toml
sehqlr Sep 3, 2021
857aed2
Readd netlify settings from master
sehqlr Sep 3, 2021
af3f79e
Fix merge conflicts, and some other things
sehqlr Sep 15, 2021
aed4562
Don't need to ignore anything currently
sehqlr Sep 15, 2021
aabea2d
I forgot to delete this
sehqlr Sep 15, 2021
2a3d90e
Removing copyright
sehqlr Sep 15, 2021
243b4b4
Remove ref to #interpersonal
astrostl Aug 11, 2022
8fd3fa2
Replace inviter link
astrostl Aug 11, 2022
d518da9
Update index.html
sehqlr Sep 3, 2022
a20157d
Refreshing invite link
astrostl Sep 22, 2022
49456cb
Fix code-of-conduct link
IDisposable Sep 29, 2023
cb49d1e
Merge pull request #20 from IDisposable/patch-1
astrostl Sep 29, 2023
00fe715
Remove explicit IR/mod section
astrostl Jan 5, 2024
4d8e175
Remove explicit IR/mod section
astrostl Jan 5, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

5 changes: 0 additions & 5 deletions archetypes/default.md

This file was deleted.

File renamed without changes
16 changes: 16 additions & 0 deletions assets/main.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
jQuery(document).ready(function ($) {

$('nav li a').click(function(e){
e.preventDefault();
let articleID = $(this).attr('href');
let article = $(articleID);
let articleTop = article.offset().top;

$("html, body").animate({ scrollTop: articleTop }), 3000;
});

$('.backToTop').click(function(e){
e.preventDefault();
$("html, body").animate({ scrollTop: 0 }, 1500);
});
});
Binary file added assets/stltech_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
171 changes: 171 additions & 0 deletions assets/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,171 @@
body {
font-family: 'Source Sans Pro', sans-serif;
font-weight: 300;
color: #fff;
margin: 0;
}
a {
transition: all .3s ease;
}
p, ul, ol {
font-size: 1.25em;
line-height: 1.65;
font-weight: 300;
}
code {
background: rgba(255, 255, 255, 0.075);
border-radius: 4px;
font-family: "Courier New", monospace;
font-size: 0.9rem;
margin: 0 0.25rem;
padding: 0.25rem 0.65rem;
}
h1, h2, h3, h4, h5, h6 {
color: #ffffff;
font-weight: 600;
line-height: 1.5;
margin: 0 0 1rem 0;
text-transform: uppercase;
letter-spacing: 0.2rem;
}
h1 {
font-size: 3rem;
line-height: 1.3;
letter-spacing: 0.5rem;
}
h2 {
font-size: 2rem;
line-height: 1.4;
letter-spacing: 0.5rem;
}
h1.major, h2.major, h3.major, h4.major, h5.major, h6.major {
border-bottom: solid 1px #ffffff;
padding-bottom: 0.5rem;
margin: 0 0 2rem 0;
}

#main ul {
list-style: disc;
margin: 0 0 2rem 0;
padding-left: 1em;
}
#main ul li {
padding-left: 0.5em;
}
#main a {
border-bottom: dotted 1px rgba(255, 255, 255, 0.5);
text-decoration: none;
color: inherit;
}
#main a:hover,
#main a:focus {
border-bottom: double rgba(255, 255, 255, 0.5);
}

#header,
article {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.logo img {
height: 130px;
width: 130px;
}
.title h1 {
margin-top: 0;
margin-bottom: 0;
}
.logo {
margin-bottom: 22px;
}
.title {
margin: 30px 0;
}
nav {
margin-top: 38px;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
}
nav li {
margin: 1em 0;
}
nav a {
color: #fff;
font-size: .8em;
padding: 8px 1em;
border: 2px solid #fff;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 0.2rem;
}
nav a:hover,
nav a:focus {
color: #565656;
background-color: white;
}
#bg {
background-image:
linear-gradient(to top, rgba(19, 21, 25, 0.5), rgba(19, 21, 25, 0.5)),
url("bg.jpeg");
background-repeat: no-repeat;
background-size: cover;
position: fixed;
top: 0; bottom: 0;
left: 0; right: 0;
z-index: -1;
}
#wrapper {
max-width: 900px;
margin-left: auto;
margin-right: auto;
}

.article-inner {
background-color: rgba(27, 31, 34, 0.85);
padding: 4.5rem 1.25rem 1.5rem 1.25rem;
margin: 4.5rem auto;
position: relative;
}
.backToTop {
position: absolute;
top: 1.25rem;
right: 1.25rem;
}

#footer {
padding: 1.25rem;
}

@media screen and (min-width: 600px) {
nav ul {
display: grid;
grid-template-columns: auto auto auto;
grid-gap: 1em;
}
nav li {
margin: 0;
}
h1.major, h2.major, h3.major, h4.major, h5.major, h6.major {
width: -moz-max-content;
width: -webkit-max-content;
width: -ms-max-content;
width: max-content;
}
.article-inner {
padding: 4.5rem 2.5rem 1.5rem 2.5rem;
margin: 4.5rem auto;
}
.backToTop {
top: 2.5rem;
right: 2.5rem;
}
#footer {
padding: 0;
}
}
23 changes: 0 additions & 23 deletions config.yaml

This file was deleted.

108 changes: 0 additions & 108 deletions content/code-of-conduct.md

This file was deleted.

Loading