Sync site

This commit is contained in:
Charlie Drage 2022-01-14 09:03:45 -05:00
parent 7b3b812736
commit b796ec0222
6 changed files with 22 additions and 21 deletions

4
.gitignore vendored
View File

@ -9,11 +9,13 @@ bin
/docker-compose.yml
changes.txt
# Ignore built site
# Ignore site documents / when switching branches
docs/_site/
docs/.jekyll-cache/
docs/.git/
docs/.gitignore
_site/
.jekyll-cache/
#
# GO SPECIFIC

View File

@ -5,5 +5,3 @@ bundle exec jekyll serve .
```
And visiting `localhost:4000` on your browser.
This website is synced to the `gh-pages` branch.

View File

@ -6,6 +6,7 @@
<meta charset="utf-8">
<title>{{ site.title }} - {{ page.title }}</title>
<meta name="title" content="{{ site.title }} - {{ page.title }}">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% include meta.html %}
@ -19,13 +20,9 @@
<div class="first"><!-- Hero Section-->
<div class="container">
<div class="row">
<div class="hero-content wow fadeIn">
<div class="hero-content-inner">
<div class="style markdown-body">
<div class="markdown-body">
{{ content }}
</div>
</div>
</div>
</div>
<div class="questions flex-out align-center wow fadeIn">

View File

@ -421,7 +421,7 @@ body {
}
.first {
padding: 110px 10px 75px 0 !important;
padding: 110px 0 75px 0 !important;
background: #F7F7F8;
}
@ -3679,19 +3679,19 @@ font-family: "Open Sans";
background: #F7F7F8;
}
.markdown-body {
box-sizing: border-box;
min-width: 200px;
max-width: 980px;
margin: 0 auto;
padding: 45px;
}
.markdown-body {
box-sizing: border-box;
min-width: 200px;
max-width: 980px;
margin: 0 auto;
padding: 45px;
}
@media (max-width: 767px) {
.markdown-body {
padding: 15px;
}
}
@media (max-width: 767px) {
.markdown-body {
padding: 15px;
}
}
.code-example {
margin: 0;
@ -3704,3 +3704,7 @@ font-family: "Open Sans";
color: #fff !important;
font-size:13px;
}
.highlight {
background: #fff !important;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB