Skip to content

Commit

Permalink
modified: _includes/navbar.html assets/css/style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
rms46 committed Jul 23, 2024
1 parent e18b86b commit edf2aec
Show file tree
Hide file tree
Showing 5 changed files with 96 additions and 32 deletions.
64 changes: 48 additions & 16 deletions 000.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ title: "GitHub Page Configuration Files"

```
title: Operating Systems - Sistem Operasi
version: "613a---23-Jul-2024"
version: "613b---23-Jul-2024"
copyright: "2018-2024"
description: This is the Operating System course site,
a GitHub Page, hosted at GitHub.com (thank you!).
Expand Down Expand Up @@ -42,16 +42,24 @@ github: [metadata]
### Gemfile

```
source 'https://rubygems.org'
source "https://rubygems.org"
gem 'jekyll-sitemap'
gem 'github-pages', group: :jekyll_plugins
group :jekyll_plugins do
gem "addressable"
gem "nokogiri"
gem "faraday-retry"
gem 'webrick'
gem "minitest"
gem "ffi"
gem "github-pages"
gem "jekyll"
gem "jekyll-sitemap"
gem "jekyll-seo-tag"
gem "jekyll-feed"
gem "jekyll-paginate"
gem "minitest"
gem "nokogiri"
gem "readline-ext"
gem "tzinfo-data"
gem "webrick"
end
```

Expand Down Expand Up @@ -157,11 +165,12 @@ ALL: 000.md

```
{% raw %}
<!-- File _includes/navbar.html -->
<!-- (c) 2021 - 2021 VauLSMorg -->
<!-- REV02: Thu 26 Aug 2021 16:35:26 WIB -->
<!-- START: Wed 17 Feb 2021 19:48:31 WIB -->
<!-- This is a free HTML file -->
<!-- File _includes/navbar.html -->
<!-- (c) 2021 - 2024 VauLSMorg -->
<!-- REV03: Tue 23 Jul 2024 13:00 -->
<!-- REV02: Thu 26 Aug 2021 16:00 -->
<!-- START: Wed 17 Feb 2021 19:00 -->
<!-- This is a free HTML file -->
<nav class="navbar">
<ul>
<li class='listitem'><a href='{{ site.baseurl }}/'>HOME</a></li>
Expand Down Expand Up @@ -211,10 +220,14 @@ ALL: 000.md
.plainclass1 h1 {
color: hsl(100, 50%, 50%);
font-size: 1.9em;
font-weight: bold;
}
.plainclass1 h2 {
color: hsl(100, 50%, 50%);
font-size: 1.4em;
font-weight: bold;
}
.plainclass1 h3 {
Expand All @@ -240,6 +253,10 @@ ALL: 000.md
color: #f0f0f0;
}
.textleft {
text-align: left;
}
.row {
}
Expand Down Expand Up @@ -315,6 +332,16 @@ ALL: 000.md
clear: both;
}
td {
padding-top: 3px;
padding-bottom: 3px;
}
li {
padding-top: 3px;
padding-bottom: 3px;
}
.navbar {
background-color: #101010;
color: #FFFFFF;
Expand All @@ -340,10 +367,15 @@ ALL: 000.md
}
pre {
border: 3px solid rgba(255, 255, 255, 0.15);
padding: 10px;
color: #b5e853;
border-radius: 2px;
background-color: hsla(0, 0%, 0%, 1);
border: 1px solid hsla(0, 50%, 20%, 1);
padding: 10px;
font-size: 16px;
color: hsla(0, 100%, 100%, 1);
border-radius: 2px;
word-wrap: normal;
overflow: auto;
overflow-y: hidden;
}
table {
Expand Down
20 changes: 14 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
source 'https://rubygems.org'
source "https://rubygems.org"

gem 'jekyll-sitemap'
gem 'github-pages', group: :jekyll_plugins
group :jekyll_plugins do
gem "addressable"
gem "nokogiri"
gem "faraday-retry"
gem 'webrick'
gem "minitest"
gem "ffi"
gem "github-pages"
gem "jekyll"
gem "jekyll-sitemap"
gem "jekyll-seo-tag"
gem "jekyll-feed"
gem "jekyll-paginate"
gem "minitest"
gem "nokogiri"
gem "readline-ext"
gem "tzinfo-data"
gem "webrick"
end

2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
title: Operating Systems - Sistem Operasi
version: "613a---23-Jul-2024"
version: "613b---23-Jul-2024"
copyright: "2018-2024"
description: This is the Operating System course site,
a GitHub Page, hosted at GitHub.com (thank you!).
Expand Down
11 changes: 6 additions & 5 deletions _includes/navbar.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<!-- File _includes/navbar.html -->
<!-- (c) 2021 - 2021 VauLSMorg -->
<!-- REV02: Thu 26 Aug 2021 16:35:26 WIB -->
<!-- START: Wed 17 Feb 2021 19:48:31 WIB -->
<!-- This is a free HTML file -->
<!-- File _includes/navbar.html -->
<!-- (c) 2021 - 2024 VauLSMorg -->
<!-- REV03: Tue 23 Jul 2024 13:00 -->
<!-- REV02: Thu 26 Aug 2021 16:00 -->
<!-- START: Wed 17 Feb 2021 19:00 -->
<!-- This is a free HTML file -->
<nav class="navbar">
<ul>
<li class='listitem'><a href='{{ site.baseurl }}/'>HOME</a></li>
Expand Down
31 changes: 27 additions & 4 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,14 @@

.plainclass1 h1 {
color: hsl(100, 50%, 50%);
font-size: 1.9em;
font-weight: bold;
}

.plainclass1 h2 {
color: hsl(100, 50%, 50%);
font-size: 1.4em;
font-weight: bold;
}

.plainclass1 h3 {
Expand All @@ -57,6 +61,10 @@
color: #f0f0f0;
}

.textleft {
text-align: left;
}

.row {
}

Expand Down Expand Up @@ -132,6 +140,16 @@
clear: both;
}

td {
padding-top: 3px;
padding-bottom: 3px;
}

li {
padding-top: 3px;
padding-bottom: 3px;
}

.navbar {
background-color: #101010;
color: #FFFFFF;
Expand All @@ -157,10 +175,15 @@
}

pre {
border: 3px solid rgba(255, 255, 255, 0.15);
padding: 10px;
color: #b5e853;
border-radius: 2px;
background-color: hsla(0, 0%, 0%, 1);
border: 1px solid hsla(0, 50%, 20%, 1);
padding: 10px;
font-size: 16px;
color: hsla(0, 100%, 100%, 1);
border-radius: 2px;
word-wrap: normal;
overflow: auto;
overflow-y: hidden;
}

table {
Expand Down

0 comments on commit edf2aec

Please sign in to comment.