mfbs

CSS microframework
git clone https://git.ce9e.org/mfbs.git

commit
8428487f0bec4b8237430ade482f5d4adde8ac66
parent
4aa29c5720faefd98b54c192b9def26d0c77c45e
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2023-02-26 09:12
bump version to 5.3.0

Diffstat

M CHANGES.md 6 ++++++
M examples/example.css 42 +++++++++++++++++++++++-------------------
M package.json 2 +-

3 files changed, 30 insertions, 20 deletions


diff --git a/CHANGES.md b/CHANGES.md

@@ -1,3 +1,9 @@
   -1     1 5.3.0 (2023-02-26)
   -1     2 ------------------
   -1     3 
   -1     4 -   use flow-relative attributes (e.g. `margin-block-end`)
   -1     5 
   -1     6 
    1     7 5.2.1 (2022-11-10)
    2     8 ------------------
    3     9 

diff --git a/examples/example.css b/examples/example.css

@@ -10,12 +10,11 @@
   10    10 
   11    11 img,
   12    12 video {
   13    -1   max-width: 100%;
   -1    13   max-inline-size: 100%;
   14    14 }
   15    15 
   16    16 p, address, blockquote, pre, table, dl, ul, ol, figure, fieldset {
   17    -1   margin-top: 0;
   18    -1   margin-bottom: 1em;
   -1    17   margin-block: 0 1em;
   19    18 }
   20    19 
   21    20 html {
@@ -30,25 +29,28 @@ html {
   30    29 
   31    30 h1, h2, h3, h4, h5, h6 {
   32    31   line-height: 1.2;
   33    -1   margin-bottom: 0.8rem;
   34    -1   margin-top: 0;
   -1    32   margin-block: 0 0.8rem;
   35    33 }
   36    34 * + h1, * + h2, * + h3, * + h4, * + h5, * + h6 {
   37    -1   margin-top: 1.5em;
   -1    35   margin-block-start: 1.5em;
   38    36 }
   39    37 
   40    -1 :link {
   -1    38 :link,
   -1    39 :visited {
   41    40   color: #26c;
   42    41   text-decoration: underline;
   43    42 }
   44    -1 :link:hover, :link:focus-visible, :link:active {
   -1    43 :link:hover, :link:focus-visible, :link:active,
   -1    44 :visited:hover,
   -1    45 :visited:focus-visible,
   -1    46 :visited:active {
   45    47   color: #2b4d80;
   46    48 }
   47    49 
   48    50 hr {
   49    51   border: 0;
   50    -1   border-bottom: 1px solid #8f8f8f;
   51    -1   margin: 1em 0;
   -1    52   border-block-end: 1px solid #8f8f8f;
   -1    53   margin-block: 1em;
   52    54 }
   53    55 
   54    56 pre, code {
@@ -58,7 +60,7 @@ pre, code {
   58    60 }
   59    61 
   60    62 code {
   61    -1   padding: 0 0.25em;
   -1    63   padding-inline: 0.25em;
   62    64 }
   63    65 
   64    66 pre {
@@ -73,7 +75,7 @@ pre code {
   73    75 }
   74    76 
   75    77 ol, ul {
   76    -1   padding-left: 1.5rem;
   -1    78   padding-inline-start: 1.5rem;
   77    79 }
   78    80 
   79    81 dt {
@@ -81,13 +83,12 @@ dt {
   81    83 }
   82    84 
   83    85 dd {
   84    -1   margin-left: 1.5rem;
   -1    86   margin-inline-start: 1.5rem;
   85    87 }
   86    88 
   87    89 blockquote {
   88    90   font-style: italic;
   89    -1   margin-left: 1.5rem;
   90    -1   margin-right: 0;
   -1    91   margin-inline: 1.5rem 0;
   91    92 }
   92    93 
   93    94 table {
@@ -125,9 +126,11 @@ sub, sup {
  125   126   }
  126   127 }
  127   128 body {
  128    -1   margin: 2em auto;
  129    -1   max-width: 37em;
  130    -1   padding: 0 0.5em;
   -1   129   margin-block: 2em;
   -1   130   margin-inline: auto;
   -1   131   max-inline-size: 37em;
   -1   132   padding-block: 0;
   -1   133   padding-inline: 0.5em;
  131   134 }
  132   135 
  133   136 html {
@@ -155,7 +158,8 @@ button,
  155   158 textarea,
  156   159 select {
  157   160   border: 1px solid #8f8f8f;
  158    -1   padding: 0.3em 0.75em;
   -1   161   padding-block: 0.3em;
   -1   162   padding-inline: 0.75em;
  159   163   font-family: inherit;
  160   164   font-size: inherit;
  161   165   line-height: 1.8;

diff --git a/package.json b/package.json

@@ -1,6 +1,6 @@
    1     1 {
    2     2   "name": "mfbs",
    3    -1   "version": "5.2.1",
   -1     3   "version": "5.3.0",
    4     4   "description": "mother fucking bootstrap - a minimal CSS framework",
    5     5   "keywords": ["sass"],
    6     6   "repository": {