Skip to content

Commit fb122aa

Browse files
committed
17.0 alpha
tiny, base64, webuitls, default project js and css loading
1 parent 804c1d5 commit fb122aa

File tree

18 files changed

+122
-27
lines changed

18 files changed

+122
-27
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/content/collections/projects/gti.njk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: gti quiz
33
desc: homemade quiz made up of official questions of the course <i>Gestión de Tecnologías de la Información</i>
44
icons: [devicon-eleventy-plain, devicon-javascript-plain]
55
permalink: /gti/
6-
project_css: /static/css/gti.css
7-
project_js: /static/js/gti.js
6+
project_css: gti
7+
project_js: gti
88
demo: /gti/
99
---
1010

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
title: webutils
3+
desc: wip!!
4+
icons: [devicon-eleventy-plain, devicon-javascript-plain]
5+
permalink: /webutils/
6+
demo: /webutils/
7+
---
8+
9+
{% for util in collections.webutils %}
10+
11+
{% endfor %}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
title: base64
3+
---
4+
5+
<textarea id="decoded" rows="10" cols="50"></textarea>
6+
<span><=></span>
7+
<textarea id="encoded" rows="10" cols="50"></textarea>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
title: tiny
3+
project_css: true
4+
---
5+
6+
<input id="input">
7+
<br> <br>
8+
<span id="output"></span>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"tags": "webutils",
3+
"layout": "project.njk",
4+
"permalink": "/{{ page.fileSlug }}/",
5+
"project_js": true
6+
}

src/static/css/_base.sass

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ $wrong-background: #660500
1717

1818
$fonts: 'Courier Prime', monospace
1919
$animation: 1s MULTICOLOR infinite
20+
$radius: 10px
2021

2122
@keyframes MULTICOLOR
2223
0%

src/static/css/global.sass

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@ code
6464
background-color: base.$white
6565
color: base.$secondary
6666

67+
input::selection, textarea::selection, .input::selection
68+
background-color: base.$secondary
69+
color: base.$white
70+
6771
hr
6872
color: base.$dark
6973
margin-top: 3em

src/static/css/index.sass

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
font-display: swap
1111
src: local('Ndot-55'), url('/assets/fonts/Ndot-55.otf')
1212
$dot: base.$white
13-
$radius: 10px
1413

1514
// main
1615
#main-container
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@use 'base'
1+
@use '../base'
22

33
h2, h3
44
margin-top: 3em

0 commit comments

Comments
 (0)