mirror of
https://github.com/picocss/pico.git
synced 2025-06-18 20:27:02 -04:00
Cards keep style with form tag wrapped around header and footer in article
This commit is contained in:
parent
3cfdc975d2
commit
dbd9c5a44f
259 changed files with 28939 additions and 7827 deletions
|
@ -1,10 +1,36 @@
|
|||
@use "sass:map";
|
||||
@use "sass:math";
|
||||
@use "sass:list";
|
||||
|
||||
// Settings
|
||||
// ––––––––––––––––––––
|
||||
|
||||
// Theme color
|
||||
$theme-color: "lime" !default; // amber, azure, blue, cyan, fuchsia, green, grey, indigo, jade, lime, orange, pink, pumpkin, purple, red, sand, slate, violet, yellow, zinc
|
||||
$yo-themes: (
|
||||
"amber",
|
||||
"azure",
|
||||
"blue",
|
||||
"cyan",
|
||||
"fuchsia",
|
||||
"green",
|
||||
"grey",
|
||||
"indigo",
|
||||
"jade",
|
||||
"lime",
|
||||
"orange",
|
||||
"pink",
|
||||
"pumpkin",
|
||||
"purple",
|
||||
"red",
|
||||
"sand",
|
||||
"slate",
|
||||
"violet",
|
||||
"yellow",
|
||||
"zinc"
|
||||
);
|
||||
$random: list.nth($yo-themes, math.random(list.length($yo-themes)));
|
||||
// picks a random theme to use as default
|
||||
$theme-color: $random !default; // amber, azure, blue, cyan, fuchsia, green, grey, indigo, jade, lime, orange, pink, pumpkin, purple, red, sand, slate, violet, yellow, zinc
|
||||
|
||||
// Prefix for CSS variables
|
||||
$css-var-prefix: "--pico-" !default; // Must start with "--"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue