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
{
2
-
"name": "MyWebSite",
3
-
"short_name": "MySite",
4
"icons": [
5
{
6
"src": "/web-app-manifest-192x192.png",
···
15
"purpose": "maskable"
16
}
17
],
18
-
"theme_color": "#ffffff",
19
-
"background_color": "#ffffff",
20
"display": "standalone"
21
-
}
···
1
{
2
+
"name": "Altagos",
3
+
"short_name": "Altagos",
4
"icons": [
5
{
6
"src": "/web-app-manifest-192x192.png",
···
15
"purpose": "maskable"
16
}
17
],
18
+
"theme_color": "#87a987",
19
+
"background_color": "#181616",
20
"display": "standalone"
21
+
}
+3
-1
content/notes/markdown-overview.smd
···
220
>
221
> \- Doug Engelbart, 1961
222
> ```
223
-
> With a code block
0
0
224
225
## Quotes
226
···
220
>
221
> \- Doug Engelbart, 1961
222
> ```
223
+
> With a code block and a list
224
+
> - item 1
225
+
> - item 2
226
227
## Quotes
228
+2
-13
style/base/layout.scss
···
1
-
*,
2
-
*::before,
3
-
*::after {
4
-
box-sizing: border-box;
5
-
}
6
-
7
html,
8
body {
9
height: 100%;
···
12
13
background-color: var(--bg);
14
color: var(--fg);
0
15
16
font-size-adjust: ex-height 0.5;
17
-webkit-text-size-adjust: 100%;
18
}
19
20
-
html {
21
-
scrollbar-gutter: stable;
22
-
scrollbar-color: var(--palette10) var(--bg-m3);
23
-
overflow-y: scroll;
24
-
}
25
-
26
header {
27
height: var(--header-height);
28
width: 100%;
29
-
background-color: var(--selection-background);
30
}
31
32
.content {
···
0
0
0
0
0
0
1
html,
2
body {
3
height: 100%;
···
6
7
background-color: var(--bg);
8
color: var(--fg);
9
+
scrollbar-color: var(--palette10) var(--bg-m3);
10
11
font-size-adjust: ex-height 0.5;
12
-webkit-text-size-adjust: 100%;
13
}
14
0
0
0
0
0
0
15
header {
16
height: var(--header-height);
17
width: 100%;
18
+
background-color: var(--palette10);
19
}
20
21
.content {
+3
-3
style/content/blocks.scss
···
2
--block-highlight: var(--dragonBlue2);
3
--block-header: currentColor;
4
5
-
display: inline-grid;
6
width: 100%;
7
margin: 16px 0;
8
9
background: color-mix(in srgb, currentColor 5%, transparent);
10
border-left: 5px solid var(--block-highlight);
11
-
12
scrollbar-color: var(--block-highlight) var(--bg-m3);
13
14
> * {
15
-
padding-left: 16px;
16
}
17
18
h1,
19
h2,
20
h3 {
21
margin: 0;
0
22
23
font-size: var(--font-size);
24
···
2
--block-highlight: var(--dragonBlue2);
3
--block-header: currentColor;
4
5
+
display: inline-block;
6
width: 100%;
7
margin: 16px 0;
8
9
background: color-mix(in srgb, currentColor 5%, transparent);
10
border-left: 5px solid var(--block-highlight);
0
11
scrollbar-color: var(--block-highlight) var(--bg-m3);
12
13
> * {
14
+
margin-left: 16px;
15
}
16
17
h1,
18
h2,
19
h3 {
20
margin: 0;
21
+
padding-left: 16px;
22
23
font-size: var(--font-size);
24