Skip to content
This repository has been archived by the owner on Oct 25, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3 from ngljcb/beta-jake
Browse files Browse the repository at this point in the history
added config & css
  • Loading branch information
ngljcb authored May 24, 2024
2 parents 6158dbf + f72360c commit 2bc3376
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 0 deletions.
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
title: "RISC-V Project: Double Linked-list Simulation"
82 changes: 82 additions & 0 deletions assets/css/style.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
---
---

@import "{{ site.theme }}";

html, page, window {
background-color: #0d1117 !important;
background-image: none !important;
}

* {
border-color: #0d1117 !important;
background-color: #0d1117 !important;
}

button,
select,
textarea,
[contenteditable="true"],
:root, html, page, window, *,
input:not([type="checkbox"]):not([type="radio"]):not([type="range"]) {
color: #ffffff !important;
}

a *,
input *,
button *,
select *,
optgroup *,
textarea * {
background-color: transparent !important;
}

.a, cite, cite a:link, cite a:visited, .cite, .cite:link {
color: #1f6feb !important;
}

*:link, *:link * {
color: #1f6feb !important;
}

*:visited, *:visited * {
color: #1f6feb !important
}

input[type="range"] {
-moz-appearance: none !important;;
}

button,
select,
textarea,
[contenteditable="true"],
input:not([type="checkbox"]):not([type="radio"]):not([type="range"]) {
opacity: 1 !important;
border-width: 1px !important;
border-style: solid !important;
border-color: #0d1117 !important;
-moz-appearance: none !important;
background-color: #0d1117 !important;
transition-duration: 0.3s !important;
transition-property: border-color, box-shadow !important;
}

textarea,
[contenteditable="true"],
input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="button"]):not([type="color"]):not([type="image"]):not([type="reset"]):not([type="submit"]) {
background-image: none !important;
}

select:focus,
button:focus,
textarea:focus,
input[type="color"]:focus,
input[type="image"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus,
input[type="submit"]:focus,
[contenteditable="true"]:focus,
input:focus:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="button"]):not([type="color"]):not([type="image"]):not([type="reset"]):not([type="submit"]) {
border-color: #749dbd !important;
}

0 comments on commit 2bc3376

Please sign in to comment.