tangled
alpha
login
or
join now
altagos.dev
/
website
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
small fixes
altagos.dev
7 months ago
7546712e
e0a48648
verified
This commit was signed with the committer's
known signature
.
altagos.dev
SSH Key Fingerprint:
SHA256:UbTjEcCZlc6GzQWLCuDK3D//HESWD2xFPkzue9XMras=
+13
-22
4 changed files
expand all
collapse all
unified
split
assets
favicon
site.webmanifest
content
notes
markdown-overview.smd
style
base
layout.scss
content
blocks.scss
+5
-5
assets/favicon/site.webmanifest
···
1
1
{
2
2
-
"name": "MyWebSite",
3
3
-
"short_name": "MySite",
2
2
+
"name": "Altagos",
3
3
+
"short_name": "Altagos",
4
4
"icons": [
5
5
{
6
6
"src": "/web-app-manifest-192x192.png",
···
15
15
"purpose": "maskable"
16
16
}
17
17
],
18
18
-
"theme_color": "#ffffff",
19
19
-
"background_color": "#ffffff",
18
18
+
"theme_color": "#87a987",
19
19
+
"background_color": "#181616",
20
20
"display": "standalone"
21
21
-
}
21
21
+
}
+3
-1
content/notes/markdown-overview.smd
···
220
220
>
221
221
> \- Doug Engelbart, 1961
222
222
> ```
223
223
-
> With a code block
223
223
+
> With a code block and a list
224
224
+
> - item 1
225
225
+
> - item 2
224
226
225
227
## Quotes
226
228
+2
-13
style/base/layout.scss
···
1
1
-
*,
2
2
-
*::before,
3
3
-
*::after {
4
4
-
box-sizing: border-box;
5
5
-
}
6
6
-
7
1
html,
8
2
body {
9
3
height: 100%;
···
12
6
13
7
background-color: var(--bg);
14
8
color: var(--fg);
9
9
+
scrollbar-color: var(--palette10) var(--bg-m3);
15
10
16
11
font-size-adjust: ex-height 0.5;
17
12
-webkit-text-size-adjust: 100%;
18
13
}
19
14
20
20
-
html {
21
21
-
scrollbar-gutter: stable;
22
22
-
scrollbar-color: var(--palette10) var(--bg-m3);
23
23
-
overflow-y: scroll;
24
24
-
}
25
25
-
26
15
header {
27
16
height: var(--header-height);
28
17
width: 100%;
29
29
-
background-color: var(--selection-background);
18
18
+
background-color: var(--palette10);
30
19
}
31
20
32
21
.content {
+3
-3
style/content/blocks.scss
···
2
2
--block-highlight: var(--dragonBlue2);
3
3
--block-header: currentColor;
4
4
5
5
-
display: inline-grid;
5
5
+
display: inline-block;
6
6
width: 100%;
7
7
margin: 16px 0;
8
8
9
9
background: color-mix(in srgb, currentColor 5%, transparent);
10
10
border-left: 5px solid var(--block-highlight);
11
11
-
12
11
scrollbar-color: var(--block-highlight) var(--bg-m3);
13
12
14
13
> * {
15
15
-
padding-left: 16px;
14
14
+
margin-left: 16px;
16
15
}
17
16
18
17
h1,
19
18
h2,
20
19
h3 {
21
20
margin: 0;
21
21
+
padding-left: 16px;
22
22
23
23
font-size: var(--font-size);
24
24