Skip to content

Commit

Permalink
yoinked
Browse files Browse the repository at this point in the history
  • Loading branch information
jonah-ramponi committed Mar 30, 2024
1 parent 15d6e7d commit d20fd5c
Show file tree
Hide file tree
Showing 3 changed files with 123 additions and 65 deletions.
1 change: 1 addition & 0 deletions content/about.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This is the about page.
2 changes: 2 additions & 0 deletions content/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
User-agent: *
Disallow:
Original file line number Diff line number Diff line change
@@ -1,21 +1,24 @@
/* Markdown */
:root{
--maincolor: red;
--bordercl:rebeccapurple;
--callouctcolor:dodgerblue;
--hovercolor:navy;
--darkMaincolor: #50fa7b;
:root {
--maincolor: #e24329;
--bordercl: rebeccapurple;
--callouctcolor: dodgerblue;
--hovercolor: navy;
--darkMaincolor: #50fa7b;
}

html {
color: #232333;
font-family: 'Roboto Mono', monospace;
font-size: 15px;
line-height: 1.6em;
}
body{

body {
display: block;
margin: 8px;
}

* {
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
Expand Down Expand Up @@ -48,19 +51,22 @@ a {
color: inherit;
text-decoration: none;
}

a:hover {
background-color: var(--hovercolor);
color: #fff;
background-color: var(--hovercolor);
color: #fff;
}

ul {
list-style: none;
padding-left: 2ch;
}

ul li {
text-indent: -2ch;
}
ul > li::before {

ul>li::before {
content: '* ';
font-weight: bold;
}
Expand Down Expand Up @@ -93,6 +99,7 @@ figure h4 {
margin: 0;
margin-bottom: 1em;
}

figure h4::before {
content: '↳ ';
}
Expand Down Expand Up @@ -144,17 +151,46 @@ header {
header .main {
font-size: 1.5rem;
}
h1, h2, h3, h4, h5, h6 {

h1,
h2,
h3,
h4,
h5,
h6 {
font-size: 1.2rem;
margin-top: 2em;
}

h1::before { color: var(--maincolor); content: '# '; }
h2::before { color: var(--maincolor); content: '## '; }
h3::before { color: var(--maincolor); content: '### '; }
h4::before { color: var(--maincolor); content: '#### '; }
h5::before { color: var(--maincolor); content: '##### '; }
h6::before { color: var(--maincolor); content: '###### '; }
h1::before {
color: var(--maincolor);
content: '# ';
}

h2::before {
color: var(--maincolor);
content: '## ';
}

h3::before {
color: var(--maincolor);
content: '### ';
}

h4::before {
color: var(--maincolor);
content: '#### ';
}

h5::before {
color: var(--maincolor);
content: '##### ';
}

h6::before {
color: var(--maincolor);
content: '###### ';
}

.meta {
color: #999;
Expand All @@ -169,16 +205,19 @@ footer {
padding: 2rem 0rem;
margin-top: 2rem;
}

.soc {
display: flex;
align-items: center;
border-bottom: none;
}

.border {
margin-left: 0.5rem;
margin-right: 0.5rem;
border: 1px solid;
}

.footer-info {
padding: var(--footer-padding);
}
Expand Down Expand Up @@ -220,40 +259,49 @@ article .title {
}

.site-description {
display: flex;
justify-content: space-between;
display: flex;
justify-content: space-between;
}
.tags li::before{

.tags li::before {
content: "🏷 ";
}
.tags a{
border-bottom: 3px solid var(--maincolor);

.tags a {
border-bottom: 3px solid var(--maincolor);
}
.tags a:hover{
color:white;
background-color: var(--hovercolor);

.tags a:hover {
color: white;
background-color: var(--hovercolor);
}
svg{

svg {
max-height: 15px;
}
.soc:hover{

.soc:hover {
color: white;
}
.draft-label{
color: var(--bordercl);
text-decoration: none;
padding: 2px 4px;
border-radius: 4px;
margin-left: 6px;
background-color: #f9f2f4;

.draft-label {
color: var(--bordercl);
text-decoration: none;
padding: 2px 4px;
border-radius: 4px;
margin-left: 6px;
background-color: #f9f2f4;
}

.highlight {
position: relative;
-webkit-overflow-scrolling: touch;
}

.highlight pre code[class*="language-"] {
-webkit-overflow-scrolling: touch;
}

.highlight pre code[class*="language-"]::before {
background: black;
border-radius: 0 0 0.25rem 0.25rem;
Expand All @@ -270,49 +318,56 @@ svg{

.highlight pre code[class=language-javaScript]::before,
.highlight pre code[class="language-js"]::before {
content: "js";
background: #f7df1e;
color: black;
content: "js";
background: #f7df1e;
color: black;
}

.highlight pre code[class*='language-yml']::before,
.highlight pre code[class*='language-yaml']::before {
content: 'yaml';
background: #f71e6a;
color: white;
content: 'yaml';
background: #f71e6a;
color: white;
}

.highlight pre code[class*='language-shell']::before,
.highlight pre code[class*='language-bash']::before,
.highlight pre code[class*='language-sh']::before {
content: 'shell';
background: green;
color:white
content: 'shell';
background: green;
color: white
}
.highlight pre code[class*='language-json']::before{
content: 'json';
background: dodgerblue;
color: #000000

.highlight pre code[class*='language-json']::before {
content: 'json';
background: dodgerblue;
color: #000000
}

.highlight pre code[class*='language-python']::before,
.highlight pre code[class*='language-py']::before {
content: 'py';
background: blue;
color: yellow ;
content: 'py';
background: blue;
color: yellow;
}
.highlight pre code[class*='language-css']::before{
content: 'css';
background: cyan;
color: black ;

.highlight pre code[class*='language-css']::before {
content: 'css';
background: cyan;
color: black;
}
.highlight pre code[class*='language-go']::before{
content: 'Go';
background: cyan;
color: royalblue ;

.highlight pre code[class*='language-go']::before {
content: 'Go';
background: cyan;
color: royalblue;
}

.highlight pre code[class*='language-md']::before,
.highlight pre code[class*='language-md']::before{
content: 'Markdown';
background: royalblue;
color: whitesmoke ;
.highlight pre code[class*='language-md']::before {
content: 'Markdown';
background: royalblue;
color: whitesmoke;
}

/* table */
Expand All @@ -321,13 +376,13 @@ table {
border-collapse: collapse;
}

table th{
table th {
padding: 6px 13px;
border: 1px solid #dfe2e5;
font-size: large;
}

table td{
table td {
padding: 6px 13px;
border: 1px solid #dfe2e5;
}
}

0 comments on commit d20fd5c

Please sign in to comment.