Skip to content

Commit 436f03a

Browse files
committed
hugo site
1 parent d0578b9 commit 436f03a

File tree

244 files changed

+6771
-3
lines changed

Some content is hidden

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

244 files changed

+6771
-3
lines changed

.gitignore

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
_site
2-
.sass-cache
1+
node_modules
2+
public
3+
.hugo_build.lock
4+
resources
5+
static/swiper

.well-known/org.flathub.VerifiedApps.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# web-hugo

archetypes/default.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+++
2+
date = '{{ .Date }}'
3+
draft = true
4+
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
5+
+++

assets/css/_layout.scss

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
div.highlight {
2+
margin-bottom: 1rem;
3+
}
4+
5+
@include desktop {
6+
.navbar-item {
7+
&.is-hoverable:hover {
8+
.navbar-dropdown {
9+
display: block;
10+
}
11+
}
12+
}
13+
}
14+
15+
.contents {
16+
box-shadow: $box-shadow;
17+
padding: 1.5rem;
18+
margin-bottom: 3rem;
19+
}
20+
21+
.hero-darken {
22+
background-color: rgba($hero-darken, 0.5);
23+
}
24+
25+
.content {
26+
figure {
27+
margin: 0;
28+
}
29+
}
30+
31+
.callout {
32+
&-icon {
33+
width: 4rem;
34+
height: 4rem;
35+
margin-bottom: 0.75rem;
36+
}
37+
}
38+
39+
.is-linux { display: none; }
40+
.is-mac { display: none; }
41+
.is-windows { display: none; }

assets/css/_main.scss

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
@charset "utf-8";
2+
@import url('https://fonts.googleapis.com/css?family=Montserrat');
3+
4+
$family-sans-serif: 'Montserrat', sans-serif;
5+
$primary: #188eac !default;
6+
7+
$tabs-link-active-color: $primary;
8+
$tabs-link-active-border-bottom-color: $primary;
9+
$modal-content-width: 1200px;
10+
11+
@import "../../node_modules/bulma/bulma.sass";
12+
$hero-darken: $dark !default;
13+
14+
@import "layout";
15+
@import "syntax";
16+
@import "showcase";
17+
@import "screen";
18+
@import "../../node_modules/bulma-block-list/src/block-list.scss";
19+
// @import "../node_modules/bulma-carousel/src/sass/index.sass";
20+
@import "../../node_modules/swiper/swiper-bundle.css";
21+
22+
.gh-icon {
23+
color: yellow;
24+
}

assets/css/_screen.scss

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
2+
img#carousel-image {
3+
max-width: 90vw;
4+
}
5+
6+
.carousel-dots {
7+
display: flex;
8+
justify-content: center;
9+
}
10+
11+
.carousel-dot {
12+
background: #ccc;
13+
width: 10px;
14+
height: 10px;
15+
border-radius: 25091983px;
16+
display: inline-block;
17+
margin: 0 3px;
18+
box-shadow: 0 2px 5px #aaa;
19+
cursor: pointer;
20+
}
21+
22+
.carousel-dot.is-active {
23+
background: #66c;
24+
box-shadow: 0 2px 5px #66a;
25+
}
26+
27+
.feature-avatar {
28+
width: 5rem;
29+
height: 5rem;
30+
}
31+
32+
.github-button-wrapper {
33+
display: flex;
34+
align-items: center;
35+
}

assets/css/_showcase.scss

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
.showcase {
2+
margin-bottom: 3rem;
3+
box-shadow: $box-shadow;
4+
5+
&-content {
6+
padding: 1.5rem;
7+
text-align: center;
8+
}
9+
10+
.block-list {
11+
margin-bottom: 1.5rem;
12+
}
13+
}
14+
15+
.dblist {
16+
display: flex;
17+
justify-content: center;
18+
flex-wrap: wrap;
19+
}
20+
21+
.dblistitem {
22+
margin: 10px;
23+
padding: 10px;
24+
background: #eee;
25+
border: 4px solid #bbb;
26+
border-radius: 20px;
27+
display: flex;
28+
flex-direction: column;
29+
justify-content: space-between;
30+
}
31+
32+
.dbname {
33+
margin-top: 15px;
34+
font-size: 8pt;
35+
text-align: center;
36+
color: #4a4a4a;
37+
}

assets/css/syntax.scss

Lines changed: 209 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,209 @@
1+
.highlight table td { padding: 5px; }
2+
.highlight table pre { margin: 0; }
3+
.highlight .cm {
4+
color: #999988;
5+
font-style: italic;
6+
}
7+
.highlight .cp {
8+
color: #999999;
9+
font-weight: bold;
10+
}
11+
.highlight .c1 {
12+
color: #999988;
13+
font-style: italic;
14+
}
15+
.highlight .cs {
16+
color: #999999;
17+
font-weight: bold;
18+
font-style: italic;
19+
}
20+
.highlight .c, .highlight .cd {
21+
color: #999988;
22+
font-style: italic;
23+
}
24+
.highlight .err {
25+
color: #a61717;
26+
background-color: #e3d2d2;
27+
}
28+
.highlight .gd {
29+
color: #000000;
30+
background-color: #ffdddd;
31+
}
32+
.highlight .ge {
33+
color: #000000;
34+
font-style: italic;
35+
}
36+
.highlight .gr {
37+
color: #aa0000;
38+
}
39+
.highlight .gh {
40+
color: #999999;
41+
}
42+
.highlight .gi {
43+
color: #000000;
44+
background-color: #ddffdd;
45+
}
46+
.highlight .go {
47+
color: #888888;
48+
}
49+
.highlight .gp {
50+
color: #555555;
51+
}
52+
.highlight .gs {
53+
font-weight: bold;
54+
}
55+
.highlight .gu {
56+
color: #aaaaaa;
57+
}
58+
.highlight .gt {
59+
color: #aa0000;
60+
}
61+
.highlight .kc {
62+
color: #000000;
63+
font-weight: bold;
64+
}
65+
.highlight .kd {
66+
color: #000000;
67+
font-weight: bold;
68+
}
69+
.highlight .kn {
70+
color: #000000;
71+
font-weight: bold;
72+
}
73+
.highlight .kp {
74+
color: #000000;
75+
font-weight: bold;
76+
}
77+
.highlight .kr {
78+
color: #000000;
79+
font-weight: bold;
80+
}
81+
.highlight .kt {
82+
color: #445588;
83+
font-weight: bold;
84+
}
85+
.highlight .k, .highlight .kv {
86+
color: #000000;
87+
font-weight: bold;
88+
}
89+
.highlight .mf {
90+
color: #009999;
91+
}
92+
.highlight .mh {
93+
color: #009999;
94+
}
95+
.highlight .il {
96+
color: #009999;
97+
}
98+
.highlight .mi {
99+
color: #009999;
100+
}
101+
.highlight .mo {
102+
color: #009999;
103+
}
104+
.highlight .m, .highlight .mb, .highlight .mx {
105+
color: #009999;
106+
}
107+
.highlight .sb {
108+
color: #d14;
109+
}
110+
.highlight .sc {
111+
color: #d14;
112+
}
113+
.highlight .sd {
114+
color: #d14;
115+
}
116+
.highlight .s2 {
117+
color: #d14;
118+
}
119+
.highlight .se {
120+
color: #d14;
121+
}
122+
.highlight .sh {
123+
color: #d14;
124+
}
125+
.highlight .si {
126+
color: #d14;
127+
}
128+
.highlight .sx {
129+
color: #d14;
130+
}
131+
.highlight .sr {
132+
color: #009926;
133+
}
134+
.highlight .s1 {
135+
color: #d14;
136+
}
137+
.highlight .ss {
138+
color: #990073;
139+
}
140+
.highlight .s {
141+
color: #d14;
142+
}
143+
.highlight .na {
144+
color: #008080;
145+
}
146+
.highlight .bp {
147+
color: #999999;
148+
}
149+
.highlight .nb {
150+
color: #0086B3;
151+
}
152+
.highlight .nc {
153+
color: #445588;
154+
font-weight: bold;
155+
}
156+
.highlight .no {
157+
color: #008080;
158+
}
159+
.highlight .nd {
160+
color: #3c5d5d;
161+
font-weight: bold;
162+
}
163+
.highlight .ni {
164+
color: #800080;
165+
}
166+
.highlight .ne {
167+
color: #990000;
168+
font-weight: bold;
169+
}
170+
.highlight .nf {
171+
color: #990000;
172+
font-weight: bold;
173+
}
174+
.highlight .nl {
175+
color: #990000;
176+
font-weight: bold;
177+
}
178+
.highlight .nn {
179+
color: #555555;
180+
}
181+
.highlight .nt {
182+
color: #000080;
183+
}
184+
.highlight .vc {
185+
color: #008080;
186+
}
187+
.highlight .vg {
188+
color: #008080;
189+
}
190+
.highlight .vi {
191+
color: #008080;
192+
}
193+
.highlight .nv {
194+
color: #008080;
195+
}
196+
.highlight .ow {
197+
color: #000000;
198+
font-weight: bold;
199+
}
200+
.highlight .o {
201+
color: #000000;
202+
font-weight: bold;
203+
}
204+
.highlight .w {
205+
color: #bbbbbb;
206+
}
207+
.highlight {
208+
background-color: #f8f8f8;
209+
}

0 commit comments

Comments
 (0)