Skip to content

Commit d3bc049

Browse files
committed
More updates and some style changes.
1 parent 1ca74bf commit d3bc049

File tree

103 files changed

+3378
-823
lines changed

Some content is hidden

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

103 files changed

+3378
-823
lines changed

.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
Gemfile.lock
2+
jsnix

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ COPY Gemfile Gemfile
66
RUN bundle install
77
COPY . .
88
RUN bundle exec jekyll build
9-
# ENTRYPOINT [ "bundle", "exec", "jekyll", "serve", "--force_polling", "--host", "0.0.0.0", "-P", "4000", "--drafts"]
9+
ENTRYPOINT [ "bundle", "exec", "jekyll", "serve", "--force_polling", "--host", "0.0.0.0", "-P", "4000", "--drafts"]
1010
# https:
11-
ENTRYPOINT [ "bundle", "exec", "jekyll", "serve", "--force_polling", "--host", "0.0.0.0", "-P", "4000", "--drafts", "--ssl-cert", "./cert.pem", "--ssl-key", "./key.pem"]
11+
# ENTRYPOINT [ "bundle", "exec", "jekyll", "serve", "--force_polling", "--host", "0.0.0.0", "-P", "4000", "--drafts", "--ssl-cert", "./cert.pem", "--ssl-key", "./key.pem"]

_config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,4 @@ exclude:
4242
- vendor/ruby/
4343
- scripts
4444
- tmp
45+
- jsnix

_layouts/home.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
theodore brockman - home
1414
</title>
1515
{% seo %}
16-
<script type="module" crossorigin src="assets/jsnix/assets/index-DEneHgBV.js"></script>
16+
<script type="module" crossorigin src="assets/jsnix/assets/index-_VYMQI8U.js"></script>
1717
<link rel="stylesheet" crossorigin href="assets/jsnix/assets/index-D7KvUkdH.css">
1818
</head>
1919

_sass/home.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ $font-family-primary: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono,
3232
display: flex;
3333
justify-content: center;
3434
overflow: hidden;
35-
max-height: calc(100% - 157.5px);
35+
max-height: calc(100% - var(--navbar-height))
36+
// max-height: calc(100% - 157.5px);
3637
}
3738

3839
#jsnix {

_sass/navbar.scss

+19-9
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,15 @@ $color-mouseover: #fff;
44
$breakpoint-main: 1400px;
55
$breakpoint-mobile: 800px;
66

7+
:root {
8+
--navbar-height: 157.5px;
9+
}
10+
711
@media(max-width: $breakpoint-mobile) {
12+
:root {
13+
--navbar-height: 114px;
14+
}
15+
816
.navbar {
917

1018
.navbar-drawer.open {
@@ -15,15 +23,15 @@ $breakpoint-mobile: 800px;
1523
padding: 1rem 0 !important;
1624
}
1725
}
18-
19-
div.page-container {
20-
margin-top: 114px !important;
21-
}
2226
}
2327

2428
@media(max-width: $breakpoint-main) {
29+
30+
:root {
31+
--navbar-height: 136px;
32+
}
33+
2534
.navbar {
26-
position: fixed;
2735
z-index: 10;
2836
flex-direction: column;
2937
transition: all 0.2s ease-in;
@@ -104,12 +112,11 @@ $breakpoint-mobile: 800px;
104112
a.fa {
105113
font-size: 3rem !important;
106114
color: #252525;
107-
margin-top: 10px !important;
108115
}
116+
}
109117

110-
div.page-container {
111-
margin-top: 146px;
112-
}
118+
div.page-container {
119+
margin-top: var(--navbar-height);
113120
}
114121

115122
.navbar {
@@ -118,6 +125,9 @@ $breakpoint-mobile: 800px;
118125
background-color: $color-primary;
119126
align-items: center;
120127
justify-content: center;
128+
height: var(--navbar-height);
129+
z-index: 10;
130+
position: fixed;
121131

122132
.container {
123133
display: flex;

assets/jsnix/assets/abap-BrgZPUOV.js

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)