fart.css is a CSS library of styles reusable across your fart-tastic frontends.
To get started with fart.css, include the following line in the
<head>
of your HTML file:
<link rel="stylesheet" type="text/css" href="https://css.fart.tools" />
From there, you can use the classes and styles provided by the fart.css CSS library.
fart.css provides a set of CSS variables
var(--css-variable)
for colors:
Colors are defined in the root.css file.
:root { --fart-green:
#c3ef3c
; --fart-dark-green:
#004021
; --fart-darker-dark-green:
#002d17
; --fart-lighter-dark-green:
#005b31
; --fart-pink:
#db7093
; --fart-pink-transparent:
#db709384
; --fart-white:
#ddd
; --fart-off-white:
#aaa
; }
fart.css provides a set of keyframes for animations in the keyframes.css file.
fart.css provides implicit styling for a set of common HTML elements in the semantics.css file.
Body and HTML elements are styled with:
html,
body {
background-color: var(--fart-dark-green);
color: var(--fart-white);
font-family: sans-serif;
margin: 0;
}
Check out the available styles in the semantics.css file.
Headings <h1>
through <h6>
are
styled with a custom font and size.
Links <a>
, .fart-link
, and
.fart-link-visible-on-hover
are styled with a custom color
and hover effect. Use .fart-link-visible-on-hover
to style
links whose underline is only visible on hover.
Lists <ul>
and <ol>
are styled
with a custom color and padding.
Blockquotes <blockquote>
are styled with a custom
color and padding.
Example blockquote
Use <hr>
or .fart-hr
to create a
horizontal rule. The rule is styled with var(--fart-green)
.
fart.css provides miscellaneous styles in the misc.css file.
Buttons .fart-button
are have a rounded button style with a
custom color and hover effect.
Sections .fart-section
are styled with a custom color and
padding.
Headers .fart-header
are styled with a custom font and
size.
Sparkles .fart-sparkle
are styled with sparkle emojis on
either side of the text content.
Hoverable logos .fart-logo
are styled with a custom
animation on hover.
Thanks for checking out fart.css! If you have any questions or feedback, Chat↗ with the community on Discord and check out our ★Source↗ on GitHub! Top↑