Skip to content

Commit 07a65f8

Browse files
Initial hugo migration
1 parent e248a39 commit 07a65f8

File tree

217 files changed

+124823
-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.

217 files changed

+124823
-3
lines changed

.hugo_build.lock

Whitespace-only changes.

_config.yml

Lines changed: 0 additions & 3 deletions
This file was deleted.

archetypes/default.md

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

assets/scss/_button.css

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
.btn {
2+
/* font-family: gotham ssm a, gotham ssm b, sans-serif; */
3+
font-weight: bold;
4+
padding: 10px 20px;
5+
border-radius: 3px;
6+
letter-spacing: 1px;
7+
text-transform: uppercase;
8+
color: #fff !important;
9+
border: none;
10+
outline: 0;
11+
}
12+
13+
.btn.big {
14+
padding: 18px 29px;
15+
}
16+
17+
.btn.pink {
18+
background: #ec008c;
19+
}
20+
21+
.btn.pink-gradient {
22+
background: linear-gradient(145deg, #F05A28 0, #EC008C 100%);
23+
transition: filter .3s !important;
24+
}
25+
26+
.btn.pink-gradient:hover, .btn.pink-gradient:active {
27+
cursor: pointer;
28+
filter: hue-rotate(140deg) saturate(2) drop-shadow(2px 4px 6px #5a3);
29+
}

assets/scss/_files.scss

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
.file-title {
2+
margin-bottom: 0;
3+
}
4+
5+
pre.file-content {
6+
background: whitesmoke;
7+
padding: 16px;
8+
border-radius: 6px;
9+
overflow-x: auto;
10+
width: fit-content;
11+
margin: 21px auto 0 auto;
12+
}
13+
14+
img.file-image {
15+
margin: 21px auto 0 auto;
16+
width: fit-content;
17+
}
18+
19+
@media (max-width: $layout-breakpoint-small) {
20+
pre.file-content, img.file-image {
21+
width: 100%;
22+
}
23+
}

assets/scss/_layout.scss

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
.container {
2+
display: flex;
3+
flex-direction: column;
4+
flex-wrap: wrap;
5+
width: 100%;
6+
max-width: 900px;
7+
margin: auto;
8+
padding: 0 15px;
9+
}
10+
11+
.container.center {
12+
justify-content: center;
13+
}
14+
15+
.text-center {
16+
text-align: center;
17+
}

assets/scss/_main.css

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
.md-img.profile {
2+
width: 100%;
3+
max-width: 100px;
4+
}
5+
6+
.profile-container {
7+
padding-right: 0 !important;
8+
padding-bottom: 0 !important;
9+
}
10+
11+
.markdown > pre {
12+
white-space: break-spaces;
13+
}
14+
15+
.markdown > table {
16+
border-collapse: collapse;
17+
}
18+
19+
.markdown > table > tbody > tr > td {
20+
border: solid 1px #cecece;
21+
padding: 0 3px;
22+
}
23+
24+
.markdown .team-profile {
25+
margin-bottom: 16px !important;
26+
}
27+
28+
.markdown .team-profile .profile-container {
29+
align-self: center;
30+
}

assets/scss/_section.css

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
section {
2+
color: #fff;
3+
padding-top: 60px;
4+
padding-bottom: 50px;
5+
font-size: 1.3em;
6+
}
7+
8+
section.large {
9+
padding-bottom: 150px;
10+
}
11+
12+
section.default {
13+
color: #000;
14+
}
15+
16+
section.white {
17+
background-color: white;
18+
color: #000;
19+
}
20+
21+
section.white .underlined::after {
22+
border-color: #f3c006;
23+
}
24+
25+
section.blue {
26+
background-color: #2169C7;
27+
}
28+
29+
section.green {
30+
background-color: #246910;
31+
}
32+
33+
section.yellow {
34+
background-color: #908900;
35+
color: #000;
36+
}
37+
38+
section.purple {
39+
background-color: #2e2459;
40+
}
41+
42+
section.purple .underlined::after {
43+
border-color: #A7233A;
44+
}
45+
46+
section.red {
47+
background-color: #A7233A;
48+
}
49+
50+
section.red .underlined::after {
51+
border-color: #2e2459;
52+
}

assets/scss/_vars.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
$layout-breakpoint-small: 700px;
2+
$layout-breakpoint-very-small: 450px;

assets/scss/elements/_button.scss

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
.btn {
2+
/* font-family: gotham ssm a, gotham ssm b, sans-serif; */
3+
font-weight: bold;
4+
padding: 10px 20px;
5+
border-radius: 3px;
6+
letter-spacing: 1px;
7+
text-transform: uppercase;
8+
color: #fff !important;
9+
border: none;
10+
outline: 0;
11+
12+
&.big {
13+
padding: 18px 29px;
14+
}
15+
16+
&.pink {
17+
background: #ec008c;
18+
19+
&-gradient {
20+
background: linear-gradient(145deg, #F05A28 0, #EC008C 100%);
21+
transition: filter .3s !important;
22+
23+
&:hover, &:active {
24+
cursor: pointer;
25+
filter: hue-rotate(140deg) saturate(2) drop-shadow(2px 4px 6px #5a3); // blue: hue-rotate(228deg), #58f
26+
}
27+
}
28+
}
29+
}

0 commit comments

Comments
 (0)