mirror of
https://gitlab.com/Alamantus/Readlebee.git
synced 2025-06-07 01:46:38 +02:00
Update picnic customizations; Fix pseudo tooltip
This commit is contained in:
parent
ea87184bb3
commit
496787263b
2 changed files with 19 additions and 8 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
// Picnic Overrides
|
||||||
body {
|
body {
|
||||||
font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
||||||
}
|
}
|
||||||
|
@ -18,11 +19,9 @@ nav {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
footer nav {
|
.pseudo[data-tooltip]::after {
|
||||||
.links {
|
background-color: $picnic-black;
|
||||||
@extend .brand;
|
color: $picnic-white;
|
||||||
font-weight: unset;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// External links
|
// External links
|
||||||
|
@ -35,11 +34,19 @@ a[href^="https://"]:after{
|
||||||
content: "\f08e";
|
content: "\f08e";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// New components
|
||||||
.menu ul li {
|
.menu ul li {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
footer nav {
|
||||||
|
.links {
|
||||||
|
@extend .brand;
|
||||||
|
font-weight: unset;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
display: block;
|
display: block;
|
||||||
width: 75%;
|
width: 75%;
|
||||||
|
@ -131,6 +138,7 @@ th {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Handy Utilities
|
||||||
.paddingless {
|
.paddingless {
|
||||||
padding: 0 !important;
|
padding: 0 !important;
|
||||||
}
|
}
|
||||||
|
@ -140,8 +148,11 @@ th {
|
||||||
.italic {
|
.italic {
|
||||||
font-style: italic !important;
|
font-style: italic !important;
|
||||||
}
|
}
|
||||||
|
.large {
|
||||||
|
font-size: 1.5em;
|
||||||
|
}
|
||||||
.small {
|
.small {
|
||||||
font-size: 80%;
|
font-size: 0.8em;
|
||||||
}
|
}
|
||||||
.left-align {
|
.left-align {
|
||||||
text-align: left !important;
|
text-align: left !important;
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
|
|
||||||
|
|
||||||
// Colors (from /themes/default/colors)
|
// Colors (from /themes/default/colors)
|
||||||
$picnic-white: #fff !default;
|
$picnic-white: $white !default;
|
||||||
$picnic-black: #111 !default;
|
$picnic-black: $black !default;
|
||||||
$picnic-primary: $teal !default;
|
$picnic-primary: $teal !default;
|
||||||
$picnic-success: $green !default;
|
$picnic-success: $green !default;
|
||||||
$picnic-info: $blue !default;
|
$picnic-info: $blue !default;
|
||||||
|
|
Loading…
Add table
Reference in a new issue