Added scripts for content, Improved tables and buttons

Update scripts.php, sidebar.php, and 20 more files...
This commit is contained in:
2023-05-24 07:04:00 +02:00
parent 3cadb29be5
commit d5ea7e369b
22 changed files with 302 additions and 130 deletions

View File

@@ -13,6 +13,10 @@
.border {
border: 1px solid #{$color-border-all};
&.b-light {
border: 1px solid #{$color-border-light};
}
}
* {

View File

@@ -37,3 +37,9 @@
/* Utilities > Spacing > Global > Others */
@include global-spacing-maker("m", "margin", "auto", auto);
@include global-spacing-maker("p", "padding", "auto", auto);
/* Utilities > Spacing > Global > Manual Extras */
.p-mxs {
padding: calc(#{$margin-base-size} * 0.375);
}

View File

@@ -28,6 +28,12 @@ h1, h2, h3, h4, h5, h6 {
.t-size-13 {
font-size: 1.3rem !important;
}
.t-size-15 {
font-size: 1.5rem !important;
}
.t-size-17 {
font-size: 1.7rem !important;
}
@for $_ from 2 through 7 {
$size: $_ * 100;

View File

@@ -11,7 +11,9 @@ code {
// For spans
.code, kbd {
border: 1px solid #{$color-unset};
background-color: #{$color-background-code};
border: 1px solid #{$color-border-code};
// Using '.r-s'
border-radius: calc(#{$border-base-radius} * 0.75);
@@ -20,3 +22,17 @@ code {
padding-left: calc(#{$border-base-radius} * 0.625);
padding-right: calc(#{$border-base-radius} * 0.625);
}
// Removes the background added by highlight.js
.code-line {
background: rgba(0,0,0,0) !important;
}
code, .code, .code-line {
line-height: 1.35;
}
// FIXME: Use a proper class !!!
.code:not(code) {
padding: calc(#{$border-base-radius} * 0.625);
}

View File

@@ -21,3 +21,7 @@
// }
//}
//
button + button, .button-link + .button-link > button {
margin-left: 0.75rem;
}

View File

@@ -35,6 +35,12 @@ table.stylish {
}
}
&.table-v-center {
tr, td {
vertical-align: middle;
}
}
// Fixing border issues when using rounded corners by using a "fake" one using the background's color.
// It will look like utter shit when rounded on firefox because its rendering engine cannot clip rounded corners apparently.
// I guess that's what being at less than 3% of the market share does to you and your ability to care about basic shit.

View File

@@ -4,6 +4,10 @@ p, a, h1, h2, h3, td {
color: #{$color-text-regular-normal};
}
p {
line-height: 1.2;
}
// Setting colors for bland links.
// Done before muted text to make the footer privacy link possible.
a {
@@ -20,6 +24,10 @@ a:hover {
}
}
.t-half-muted {
opacity: 65%;
}
.t-muted {
//@if $undefined-toggle-css-variables {
// color: var(--color-white-muted);
@@ -36,6 +44,7 @@ a:hover {
.t-logo-text {
font-size: 1.775em;
line-height: 1;
}
a:not(.bland-link) {

View File

@@ -58,6 +58,8 @@ $color-apollo-custom-03: mix($color-apollo-40, $color-apollo-39, 65%);
$color-apollo-custom-10: mix($color-apollo-40, $color-apollo-41, 75%);
$color-apollo-custom-20: mix($color-apollo-39, $color-apollo-38, 60%);
//$color-test-01: mix(#7b6aa5, #000000, 33%);
$color-test-02: #007c7d;
@@ -78,6 +80,7 @@ $color-link-blue: #{$color-apollo-04};
$color-link-blue-hover: #{$color-apollo-05};
$color-border-all: $color-apollo-38;
$color-border-light: $color-apollo-custom-20;
$color-input-glow: $color-apollo-02;
@@ -99,6 +102,9 @@ $color-background-surround: $color-apollo-custom-00;
//$color-background-main-headings: $color-apollo-40;
$color-background-main-headings: $color-apollo-custom-03;
$color-background-code: #{$color-apollo-custom-20};
$color-border-code: #{$color-border-all}CF;
$color-background-table-main: $color-apollo-custom-01;
$color-background-table-dual: $color-apollo-custom-00;
//$color-table-border: $color-apollo-41;