Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 15 additions & 11 deletions assets/css/art-deco.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,24 @@ $link-hover-color: #fff;

/*-- scss:rules --*/
body {
background-color: #1c1c1c;
background-color: #1c1c1c;
}
h1, h2, h3 {
font-family: 'Playfair Display', serif;
border-bottom: 1px solid #d4af37;
display: inline-block;
padding-bottom: 5px;

h1,
h2,
h3 {
font-family: "Playfair Display", serif;
border-bottom: 1px solid #d4af37;
width: fit-content;
padding-bottom: 5px;
}

.navbar {
background-color: #000;
border-bottom: 3px double #d4af37;
background-color: #000;
border-bottom: 3px double #d4af37;
}

.callout {
border: 1px solid #d4af37;
background-color: #111;
border: 1px solid #d4af37;
background-color: #111;
}

23 changes: 16 additions & 7 deletions assets/css/cyberpunk.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,27 @@ $link-hover-color: #05d9e8;

/*-- scss:rules --*/
body {
background-image: repeating-linear-gradient(0deg, transparent 0, transparent 1px, #021a21 1px, #021a21 3px);
background-image: repeating-linear-gradient(
0deg,
transparent 0,
transparent 1px,
#021a21 1px,
#021a21 3px
);
}

.navbar {
background-color: #010b12;
border-bottom: 1px solid #05d9e8;
}
h1, h2 {
text-transform: uppercase;
letter-spacing: 2px;

h1,
h2 {
text-transform: uppercase;
letter-spacing: 2px;
}

.callout {
background-color: rgba(5, 217, 232, 0.1);
border-left-color: #ff2a6d;
background-color: rgba(5, 217, 232, 0.1);
border-left-color: #ff2a6d;
}

8 changes: 4 additions & 4 deletions assets/css/dark-solar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ $link-hover-color: #cb4b16;

/*-- scss:rules --*/
.navbar {
background-color: #073642;
background-color: #073642;
}

code {
background-color: #073642;
color: #859900;
background-color: #073642;
color: #859900;
}

19 changes: 11 additions & 8 deletions assets/css/retrofuturism.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,18 @@ $font-family-sans-serif: "Courier New", Courier, monospace;

/*-- scss:rules --*/
body {
border: 10px double #e09f3e;
margin: 10px;
border: 10px double #e09f3e;
margin: 10px;
}

.navbar {
background-color: #3d2b1f;
border-bottom: 2px solid #e09f3e;
}
h1, h2, h3 {
font-family: "Courier New", Courier, monospace;
text-transform: uppercase;
background-color: #3d2b1f;
border-bottom: 2px solid #e09f3e;
}

h1,
h2,
h3 {
font-family: $font-family-sans-serif;
text-transform: uppercase;
}
18 changes: 13 additions & 5 deletions assets/css/tokyo-neon.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,24 @@ $link-hover-color: #0ff;
background-color: #0a0a0a;
border-bottom: 2px solid #ff0099;
}
h1, h2, h3, h4, h5, h6 {

h1,
h2,
h3,
h4,
h5,
h6 {
text-shadow: 2px 2px 4px #ff0099;
}

code {
color: #ccff00;
background-color: #111;
border: 1px solid #0ff;
}
.btn, .callout {
border: 1px solid #0ff;
box-shadow: 0 0 5px #0ff;
}

.btn,
.callout {
border: 1px solid #0ff;
box-shadow: 0 0 5px #0ff;
}
3 changes: 0 additions & 3 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -385,9 +385,6 @@ img {
height: auto;
}

img[alt=""] {
border: 2px dashed #e74c3c;
}

/* Improve button accessibility */
button,
Expand Down
Loading