generated from corysanin/nodejs-web-template
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 5a70c9580c | |||
| ee3c200132 | |||
| 5ab4216716 | |||
| 4a39ffd95e |
BIN
assets/flyer/flyer.pdf
Normal file
BIN
assets/flyer/flyer.pdf
Normal file
Binary file not shown.
BIN
assets/flyer/flyer.psd
Normal file
BIN
assets/flyer/flyer.psd
Normal file
Binary file not shown.
BIN
assets/flyer/flyer_baw.pdf
Normal file
BIN
assets/flyer/flyer_baw.pdf
Normal file
Binary file not shown.
4
package-lock.json
generated
4
package-lock.json
generated
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "madisonlinux",
|
"name": "madisonlinux",
|
||||||
"version": "0.0.1",
|
"version": "0.0.3",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "madisonlinux",
|
"name": "madisonlinux",
|
||||||
"version": "0.0.1",
|
"version": "0.0.3",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"ejs": "3.1.10",
|
"ejs": "3.1.10",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "madisonlinux",
|
"name": "madisonlinux",
|
||||||
"version": "0.0.1",
|
"version": "0.0.3",
|
||||||
"description": "Website for upcoming Linux install party in Madison WI",
|
"description": "Website for upcoming Linux install party in Madison WI",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"web",
|
"web",
|
||||||
|
|||||||
@@ -62,6 +62,12 @@ img {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn {
|
||||||
|
padding: .4em .65em;
|
||||||
|
text-decoration: none;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
.img-container {
|
.img-container {
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
|
|||||||
@@ -4,14 +4,32 @@ body {
|
|||||||
background: linear-gradient(90deg, rgba(19, 65, 123, 1) 0%, rgba(25, 74, 136, 1) 50%, rgba(19, 65, 123, 1) 100%);
|
background: linear-gradient(90deg, rgba(19, 65, 123, 1) 0%, rgba(25, 74, 136, 1) 50%, rgba(19, 65, 123, 1) 100%);
|
||||||
}
|
}
|
||||||
|
|
||||||
a, a:link, a:visited {
|
a,
|
||||||
|
a:link,
|
||||||
|
a:visited {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: #fff3ba;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
border-left: 5px solid #fff;
|
border-left: 5px solid #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.btn,
|
||||||
|
a.btn {
|
||||||
|
background-color: #fff;
|
||||||
|
color: #000;
|
||||||
|
box-shadow: 0px 3px 10px 0px rgba(50, 50, 50, .65);
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: #fff3ba;
|
||||||
|
color: #000;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.nav_links {
|
.nav_links {
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
color: #13417B;
|
color: #13417B;
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
<link rel="canonical" href="<%= page.canonical%>"/>
|
<link rel="canonical" href="<%= page.canonical%>"/>
|
||||||
<% } %>
|
<% } %>
|
||||||
<link rel="shortcut icon" href="/assets/svg/favicon.svg">
|
<link rel="shortcut icon" href="/assets/svg/favicon.svg">
|
||||||
<link rel="stylesheet" href="/assets/css/styles.css?v4">
|
<link rel="stylesheet" href="/assets/css/styles.css?v5">
|
||||||
<script nonce="<%= cspNonce %>">
|
<script nonce="<%= cspNonce %>">
|
||||||
document.addEventListener("DOMContentLoaded", function() {
|
document.addEventListener("DOMContentLoaded", function() {
|
||||||
document.body.classList.remove('preload');
|
document.body.classList.remove('preload');
|
||||||
|
|||||||
@@ -51,6 +51,9 @@
|
|||||||
<p>
|
<p>
|
||||||
Come meet us at Sector67:<br/>56 Corry St, Madison, WI 53704
|
Come meet us at Sector67:<br/>56 Corry St, Madison, WI 53704
|
||||||
</p>
|
</p>
|
||||||
|
<p>
|
||||||
|
<a class="btn" href="/event.ics">🗓️ Add to Calendar</a>
|
||||||
|
</p>
|
||||||
<p>
|
<p>
|
||||||
If you have additional questions about the event, email me at <a href="mailto:endof10@cory.sanin.dev">endof10@cory.sanin.dev</a>
|
If you have additional questions about the event, email me at <a href="mailto:endof10@cory.sanin.dev">endof10@cory.sanin.dev</a>
|
||||||
</p>
|
</p>
|
||||||
|
|||||||
@@ -36,7 +36,7 @@
|
|||||||
</p>
|
</p>
|
||||||
<h2>Gaming Focused</h2>
|
<h2>Gaming Focused</h2>
|
||||||
<p>
|
<p>
|
||||||
For gaming-focused PC's, of course most general purpose distro will do. However, there are a couple
|
For gaming-focused PC's, of course most general purpose distros will do. However, there are a couple
|
||||||
options worth your consideration.
|
options worth your consideration.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
|
|||||||
Reference in New Issue
Block a user