Skip to content

Commit

Permalink
removes some uls, tidies up font sizing and shadows (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
hry-gh authored Sep 12, 2024
1 parent 1743b79 commit 09ced45
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 10 deletions.
2 changes: 1 addition & 1 deletion content/language/operators/greater-or-equal.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ usage = "x >= y"
return = "1 if x is greater or equal to y, 0 otherwise"
+++

If both `x` and `y` are strings, they are compared case sensitively - see [sortTextEx()](objects/proc/sorttextex.md).
If both `x` and `y` are strings, they are compared case sensitively - see [sortTextEx()](@/language/proc/sorttextex.md).
2 changes: 1 addition & 1 deletion content/language/operators/greater.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ usage = "x > y"
return = "1 if x is greater than y, 0 otherwise"
+++

If both `x` and `y` are strings, they are compared case sensitively - see [sortTextEx()](objects/proc/sorttextex.md).
If both `x` and `y` are strings, they are compared case sensitively - see [sortTextEx()](@/language/proc/sorttextex.md).
2 changes: 1 addition & 1 deletion content/language/operators/lesser-or-equal.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ usage = "x <= y"
return = "1 if x is lesser or equal to y, 0 otherwise"
+++

If both `x` and `y` are strings, they are compared case sensitively - see [sortTextEx()](objects/proc/sorttextex.md).
If both `x` and `y` are strings, they are compared case sensitively - see [sortTextEx()](@/language/proc/sorttextex.md).
2 changes: 1 addition & 1 deletion content/language/operators/lesser.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ usage = "x < y"
return = "1 if x is lesser than y, 0 otherwise"
+++

If both `x` and `y` are strings, they are compared case sensitively - see [sortTextEx()](objects/proc/sorttextex.md).
If both `x` and `y` are strings, they are compared case sensitively - see [sortTextEx()](@/language/proc/sorttextex.md).
2 changes: 1 addition & 1 deletion static/index.css

Large diffs are not rendered by default.

14 changes: 13 additions & 1 deletion styles/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -265,14 +265,26 @@ pre,
font-style: normal;
}

@media (max-width: 768px) {
.left-bar .text-title {
font-size: 16px;
}
}

.text-title {
font-size: 24px;
font-size: 22px;
font-family: "Nunito", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
}

@media (max-width: 768px) {
.left-bar .text-title {
font-size: 18px;
}
}

.text-title a {
padding-left: 4px;
}
Expand Down
4 changes: 2 additions & 2 deletions templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@

</script>

<div class="flex pl-3 h-[100%]">
<div class="left-bar hidden md:block h-[100%]" id="left-bar">
<div class="flex h-[100%]">
<div class="left-bar ml-3 hidden md:block h-[100%] shadow-md dark:shadow-xl" id="left-bar">
<div class="flex flex-row">
<div class="flex flex-col justify-center">
<a href="{{ config.base_url | safe }}">
Expand Down
4 changes: 2 additions & 2 deletions templates/macros.html
Original file line number Diff line number Diff line change
Expand Up @@ -288,11 +288,11 @@ <h3 class="text-xl">Inherited Vars:</h3>
{% if page.backlinks | length %}
<div>
<h4>See also:</h4>
<ul>
<div class="flex flex-col">
{% for backlink in page.backlinks %}
<div class="pl-3">- <a href="{{backlink.permalink}}">{{backlink.title}}</a></div>
{% endfor %}
</ul>
</div>
</div>
{% endif %}
{% endmacro render_backlinks %}
Expand Down

0 comments on commit 09ced45

Please sign in to comment.