tangled
alpha
login
or
join now
da157.id
/
website
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
add dollcode
0xda157
4 months ago
894c4e9e
5e7d7fd8
+21
-3
2 changed files
expand all
collapse all
unified
split
sass
style.scss
templates
partials
nav.html
+13
sass/style.scss
···
60
60
display: flex;
61
61
margin-top: 1rem;
62
62
gap: 1rem;
63
63
+
justify-content: space-between;
64
64
+
.nav-section {
65
65
+
display: flex;
66
66
+
gap: 1rem;
67
67
+
}
63
68
}
64
69
65
70
main {
···
77
82
hr {
78
83
color: var(--primary);
79
84
}
85
85
+
86
86
+
.dollcode {
87
87
+
transition: color 2s;
88
88
+
color: var(--accent);
89
89
+
@starting-style {
90
90
+
color: var(--secondary);
91
91
+
}
92
92
+
}
+8
-3
templates/partials/nav.html
···
1
1
<nav>
2
2
-
{%- for link in config.extra.nav -%}
3
3
-
<a href="{{ link.url }}">{{ link.name }}</a>
4
4
-
{%- endfor -%}
2
2
+
<div class="nav-section">
3
3
+
{%- for link in config.extra.nav -%}
4
4
+
<a href="{{ link.url }}">{{ link.name }}</a>
5
5
+
{%- endfor -%}
6
6
+
</div>
7
7
+
<div class="nav-section">
8
8
+
<span class="dollcode">▖▖▘▘▌▘▌▌▘▘▘▌▌</span>
9
9
+
</div>
5
10
</nav>