Skip to content

Commit 1ff8aa9

Browse files
committed
pico css lil update, and fix to sunnis image (used discord cdn!)
1 parent 9de9eac commit 1ff8aa9

File tree

11 files changed

+47
-107
lines changed

11 files changed

+47
-107
lines changed

.github/workflows/main.yml

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ jobs:
77
steps:
88
- name: checkout
99
uses: actions/checkout@v4
10+
- uses: actions/setup-node@v4
11+
with:
12+
node-version: 'latest'
13+
- run: npm install
1014
- name: build_and_deploy
1115
uses: shalzz/zola-deploy-action@v0.10.0
1216
env:

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
public/
1+
public/
2+
node_modules/

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
# funkBlog
22

33
made with zola, lil stuff for FNF website shenanigans
4+
5+
6+
requires node/npm to install picocss!

content/blog/2023-09-18.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Leading up the event, we were scrambling a bit to make sure a conveniently locat
2020

2121
So, thanks to ingenious use of the coworking space printer, we got to work infusing the space with the proper Funkin’ spirit: fresh fan art and Dave’s Very Nifty and Professional presentation deck went up on the walls to inspire and remind us of why we were there. Our “office” may have been temporary but it felt better once we put in some effort to make it our own.
2222

23-
![img](https://cdn.discordapp.com/attachments/628006277984944177/1153473276304171028/firefox_I2sypXuGhC.png)
23+
![img](/img/funkCoin.jpg)
2424

2525
Can’t share most of the wall decorations, unfortunately, since it’s full of secret stuff, so instead here’s a photo of whiteboard jokes.
2626

package-lock.json

+20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"dependencies": {
3+
"@picocss/pico": "^2.0.3"
4+
}
5+
}

sass/style.scss

+9-30
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,13 @@
1-
html,
2-
body {
3-
margin: 0;
4-
padding: 0;
5-
}
6-
7-
body {
8-
background-color: #000000;
9-
color: #EEEEEE;
10-
font-size: larger;
11-
height: 100vh;
12-
width: 100vw;
13-
}
14-
15-
* {
16-
box-sizing: border-box;
17-
}
1+
@use "../node_modules/@picocss/pico/scss/pico.scss" with (
2+
$theme-color: "fuchsia"
3+
);
184

19-
.section {
20-
background-color: #3841BB;
21-
height: 100%;
22-
/* scroll-behavior: smooth; */
23-
width: 50%;
24-
margin: auto;
25-
display: flex;
26-
flex-flow: column;
27-
/* padding: 50px; */
28-
/*justify-content: center; */
5+
article {
6+
margin-top: auto;
7+
padding-top: 2em;
298
}
309

31-
h1 {
32-
text-align: center;
33-
padding: 0px;
10+
main .container {
11+
padding-top: -10px;
12+
margin-top: 0;
3413
}

static/img/construction.gif

37 KB
Loading

static/img/funkCoin.jpg

1.02 MB
Loading

templates/base.html

+1-48
Original file line numberDiff line numberDiff line change
@@ -5,59 +5,12 @@
55
<meta charset="utf-8">
66
<title>{% block title %}{% endblock title %}</title>
77
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
8-
<link rel="stylesheet" href="https://unpkg.com/@picocss/pico@latest/css/pico.min.css">
8+
<link rel="stylesheet" href="/style.css"/>
99
<meta property="og:title" content="Funkin.me" />
1010
<meta property="og:description" content="{% block description %}{% endblock description %}" />
1111
<meta property="og:type" content="website" />
1212
<meta property="og:image" content="https://user-images.githubusercontent.com/22229331/213636577-8983e46c-fbf0-43e3-86e6-4797ae3ef59e.gif" />
1313
<meta property="og:url" content="{{ current_url }}" />
14-
<style>
15-
article {
16-
margin-top: auto;
17-
padding-top: 2em;
18-
}
19-
20-
main .container {
21-
padding-top: -10px;
22-
margin-top: 0;
23-
}
24-
25-
[data-theme="light"],
26-
:root:not([data-theme="dark"]) {
27-
--primary: #d81b60;
28-
--primary-hover: #c2185b;
29-
--primary-focus: rgba(216, 27, 96, 0.125);
30-
--primary-inverse: #FFF;
31-
}
32-
/* Pink Dark scheme (Auto) */
33-
/* Automatically enabled if user has Dark mode enabled */
34-
35-
@media only screen and (prefers-color-scheme: dark) {
36-
:root:not([data-theme]) {
37-
--primary: #d81b60;
38-
--primary-hover: #e91e63;
39-
--primary-focus: rgba(216, 27, 96, 0.25);
40-
--primary-inverse: #FFF;
41-
}
42-
}
43-
/* Pink Dark scheme (Forced) */
44-
/* Enabled if forced with data-theme="dark" */
45-
46-
[data-theme="dark"] {
47-
--primary: #d81b60;
48-
--primary-hover: #e91e63;
49-
--primary-focus: rgba(216, 27, 96, 0.25);
50-
--primary-inverse: #FFF;
51-
}
52-
/* Pink (Common styles) */
53-
54-
:root {
55-
--form-element-active-border-color: var(--primary);
56-
--form-element-focus-color: var(--primary-focus);
57-
--switch-color: var(--primary-inverse);
58-
--switch-checked-background-color: var(--primary);
59-
}
60-
</style>
6114

6215
</head>
6316

templates/index.html

+2-27
Original file line numberDiff line numberDiff line change
@@ -30,33 +30,8 @@ <h2><em>Who</em> the FUNK is Friday Night Funkin'?</h2>
3030
</p>
3131
<p>Now <em>The Funkin' Crew Inc.</em> is a slightly larger crew of bozos from all over the damn place</p>
3232
</section>
33-
<section>
34-
<hgroup>
35-
<h1>RELEASE</h1>
36-
<h2><em>When</em> the FUNK is Friday Night Funkin'?</h2>
37-
</hgroup>
38-
<p>
39-
Got a couples years probably.
40-
</p>
41-
</section>
42-
<section>
43-
<hgroup>
44-
<h1>HUH?</h1>
45-
<h2><em>WHY</em> the FUNK is Friday Night Funkin'?</h2>
46-
</hgroup>
47-
<p>
48-
Because we love Newgrounds a whole damn lot.
49-
</p>
50-
</section>
51-
<section>
52-
<hgroup>
53-
<h1>TECH AND STUFF</h1>
54-
<h2><em>HOW</em> the FUNK is Friday Night Funkin'?</h2>
55-
</hgroup>
56-
<p>
57-
We use a variety of tech like Haxe, Adobe Flash, Ableton, etc.
58-
</p>
59-
</section>
33+
34+
<img src="/img/construction.gif">
6035

6136
</div>
6237
{% endblock content %}

0 commit comments

Comments
 (0)