Skip to content

Commit 845c937

Browse files
author
Hugo Roy
committed
rebuild v3
1 parent d144606 commit 845c937

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+8547
-11133
lines changed

archives.markdown

+39-42
Large diffs are not rendered by default.

assets/chooselanggrey.svg

+4
Loading

assets/styles/_basics.scss

+192
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,192 @@
1+
//
2+
// BASICS
3+
//
4+
body {
5+
font-family: ui-sans-serif,system-ui,-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
6+
margin: 0;
7+
padding: 0;
8+
}
9+
10+
article.pagecontent {
11+
font-family: "Bricolage Grotesque", BricolageGrotesque, Bricolage Grotesque, ui-sans-serif,system-ui,-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
12+
}
13+
14+
//for testing
15+
.ui {
16+
background-color: rgba(255,255,0,0.2);
17+
font-family: ui-sans-serif,system-ui,-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
18+
}
19+
#content {
20+
background-color: white;
21+
}
22+
23+
24+
main.ui {
25+
display: grid;
26+
max-width: 100vw;
27+
> * {
28+
max-width: 100vw;
29+
}
30+
.ui.parentlinks, .ui.hcard {
31+
grid-row: 1;
32+
z-index: 1;
33+
}
34+
.ui.ctime {
35+
z-index: 8;
36+
display: block;
37+
grid-row: 2;
38+
grid-column: 1/3;
39+
}
40+
.pagecontent {
41+
z-index: 9;
42+
grid-row: 3;
43+
grid-column: 1/3;
44+
}
45+
.ui.pagemetas {
46+
grid-row: 4;
47+
grid-column: 1/3;
48+
}
49+
.ui.trails {
50+
grid-row: 5;
51+
grid-column: 1/3;
52+
}
53+
.ui.mainnav {
54+
z-index: 0;
55+
grid-row: 6;
56+
grid-column: 1/3;
57+
}
58+
}
59+
60+
.parentlinks {
61+
.parentlink {
62+
display: none;
63+
}
64+
.parentlink:last-child {
65+
display: inline-block;
66+
visibility: hidden;
67+
width: 0;
68+
}
69+
.parentlink:last-child::before {
70+
display: inline-block;
71+
content: "";
72+
font-weight: 700;
73+
visibility: visible;
74+
}
75+
}
76+
77+
.filter-content {
78+
display: grid;
79+
input.recent, label.recent, input.chooselang, label.chooselang {
80+
grid-row: 1;
81+
}
82+
input.choosecontent, label.choosecontent {
83+
grid-row: 2;
84+
}
85+
.inlines {
86+
grid-row: 3;
87+
grid-column: 1/20;
88+
display: none;
89+
transition: all .35s;
90+
}
91+
input:checked {
92+
+ label {
93+
+ .inlines {
94+
display: block;
95+
}
96+
}
97+
}
98+
}
99+
100+
#trails .trails {
101+
.trail {
102+
display:none;
103+
}
104+
.trail:first-child {
105+
display: block;
106+
}
107+
}
108+
109+
110+
//
111+
// #
112+
// @
113+
// ٭
114+
// 〈〉
115+
//
116+
// ©
117+
// 🛜
118+
//
119+
120+
.pagecontent {
121+
122+
pre, .gist {
123+
overflow: auto;
124+
max-width: 98vw;
125+
}
126+
// check after styles of p in posts is adjusted how to fix this
127+
p > img, p > a > img, figure img, table.img img {
128+
max-width: 100vw;
129+
height: auto;
130+
}
131+
figure {
132+
margin: 0;
133+
}
134+
135+
}
136+
137+
// STUFF
138+
//
139+
.zzz{float: right; font-size: 0.001px; color: transparent; display:inline-block; width: 0px; text-decoration: none;}
140+
.appleinclogo {
141+
font-family: "Proxima Nova","Helvetica Neue","Helvetica","Segoe UI","Nimbus Sans L","Liberation Sans","Open Sans",FreeSans,Arial,sans-serif;
142+
}
143+
144+
//
145+
// UI SPACES
146+
//
147+
148+
%for-accessibility {
149+
visibility: hidden;
150+
height: 0;
151+
}
152+
153+
.ui.accessibility {
154+
@extend %for-accessibility;
155+
display: block;
156+
line-height: 2.4em;
157+
text-align: center;
158+
}
159+
160+
161+
// TYPO
162+
163+
.pagecontent {
164+
line-height: 1.42;
165+
font-size: 15px;
166+
167+
p, h1, h2, h3, h4, h5, h6, h7, .p-summary {
168+
padding: 2px 5px;
169+
}
170+
171+
table.img {
172+
margin-left: auto;
173+
margin-right: auto;
174+
}
175+
}
176+
177+
.home .vcard .p-note img, .hugo .vcard .p-note img {
178+
max-height: 15px;
179+
vertical-align: middle;
180+
}
181+
182+
183+
// UI
184+
185+
.ui.mainnav {
186+
> a {
187+
vertical-align: top;
188+
}
189+
.sidebar {
190+
display: inline-block;
191+
}
192+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/* Bulma Base */
2+
@charset "utf-8"
3+
4+
@import "minireset"
5+
@import "generic"
6+
@import "animations"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
@keyframes spinAround
2+
from
3+
transform: rotate(0deg)
4+
to
5+
transform: rotate(359deg)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
@import "../utilities/mixins"
2+
3+
$body-background-color: $scheme-main !default
4+
$body-size: 16px !default
5+
$body-min-width: 300px !default
6+
$body-rendering: optimizeLegibility !default
7+
$body-family: $family-primary !default
8+
$body-overflow-x: hidden !default
9+
$body-overflow-y: scroll !default
10+
11+
$body-color: $text !default
12+
$body-font-size: 1em !default
13+
$body-weight: $weight-normal !default
14+
$body-line-height: 1.5 !default
15+
16+
$code-family: $family-code !default
17+
$code-padding: 0.25em 0.5em 0.25em !default
18+
$code-weight: normal !default
19+
$code-size: 0.875em !default
20+
21+
$small-font-size: 0.875em !default
22+
23+
$hr-background-color: $background !default
24+
$hr-height: 2px !default
25+
$hr-margin: 1.5rem 0 !default
26+
27+
$strong-color: $text-strong !default
28+
$strong-weight: $weight-bold !default
29+
30+
$pre-font-size: 0.875em !default
31+
$pre-padding: 1.25rem 1.5rem !default
32+
$pre-code-font-size: 1em !default
33+
34+
html
35+
background-color: $body-background-color
36+
font-size: $body-size
37+
-moz-osx-font-smoothing: grayscale
38+
-webkit-font-smoothing: antialiased
39+
min-width: $body-min-width
40+
overflow-x: $body-overflow-x
41+
overflow-y: $body-overflow-y
42+
text-rendering: $body-rendering
43+
text-size-adjust: 100%
44+
45+
article,
46+
aside,
47+
figure,
48+
footer,
49+
header,
50+
hgroup,
51+
section
52+
display: block
53+
54+
body,
55+
button,
56+
input,
57+
optgroup,
58+
select,
59+
textarea
60+
font-family: $body-family
61+
62+
code,
63+
pre
64+
-moz-osx-font-smoothing: auto
65+
-webkit-font-smoothing: auto
66+
font-family: $code-family
67+
68+
body
69+
color: $body-color
70+
font-size: $body-font-size
71+
font-weight: $body-weight
72+
line-height: $body-line-height
73+
74+
// Inline
75+
76+
a
77+
color: $link
78+
cursor: pointer
79+
text-decoration: none
80+
strong
81+
color: currentColor
82+
&:hover
83+
color: $link-hover
84+
85+
code
86+
background-color: $code-background
87+
color: $code
88+
font-size: $code-size
89+
font-weight: $code-weight
90+
padding: $code-padding
91+
92+
hr
93+
background-color: $hr-background-color
94+
border: none
95+
display: block
96+
height: $hr-height
97+
margin: $hr-margin
98+
99+
img
100+
height: auto
101+
max-width: 100%
102+
103+
input[type="checkbox"],
104+
input[type="radio"]
105+
vertical-align: baseline
106+
107+
small
108+
font-size: $small-font-size
109+
110+
span
111+
font-style: inherit
112+
font-weight: inherit
113+
114+
strong
115+
color: $strong-color
116+
font-weight: $strong-weight
117+
118+
// Block
119+
120+
fieldset
121+
border: none
122+
123+
pre
124+
+overflow-touch
125+
background-color: $pre-background
126+
color: $pre
127+
font-size: $pre-font-size
128+
overflow-x: auto
129+
padding: $pre-padding
130+
white-space: pre
131+
word-wrap: normal
132+
code
133+
background-color: transparent
134+
color: currentColor
135+
font-size: $pre-code-font-size
136+
padding: 0
137+
138+
table
139+
td,
140+
th
141+
vertical-align: top
142+
&:not([align])
143+
text-align: inherit
144+
th
145+
color: $text-strong
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@warn "The helpers.sass file is DEPRECATED. It has moved into its own /helpers folder. Please import sass/helpers/_all instead."

0 commit comments

Comments
 (0)