This is where HIPPIE gets pretty
Find a file
sthag 4e4f8814d3 feat: Resolve all deprecation warnings for sass
- Replace @import with @use and @forward
- Only color function is used in _basic.scss for now
- Change _all.scss to _index.scss
- Modules use direct dependencies
- Move @include from _config.scss to _common.scss, this was a long term mistake
- Remove $color_list
- Change basic_color()
2025-10-26 11:33:54 +01:00
elements feat: Resolve all deprecation warnings for sass 2025-10-26 11:33:54 +01:00
functions feat: Resolve all deprecation warnings for sass 2025-10-26 11:33:54 +01:00
global feat: Resolve all deprecation warnings for sass 2025-10-26 11:33:54 +01:00
mixins feat: Resolve all deprecation warnings for sass 2025-10-26 11:33:54 +01:00
modules feat: Resolve all deprecation warnings for sass 2025-10-26 11:33:54 +01:00
.gitignore Migration to new home 2023-10-17 19:10:46 +02:00
_abovethefold.scss added current state from hippie main repo 2019-11-12 20:18:02 +01:00
_basic.scss feat: Resolve all deprecation warnings for sass 2025-10-26 11:33:54 +01:00
_hippie.scss feat: Resolve all deprecation warnings for sass 2025-10-26 11:33:54 +01:00
LICENSE.md Added README and removed dependency 2020-01-05 16:32:26 +01:00
README.md Migration to new home 2023-10-17 19:10:46 +02:00

HIPPIE styles

Collection of CSS styles, mainly for the use with HIPPIE, written in SASS language.

Getting Started

These instructions will get you a copy of the project up and running on your local machine.

Prerequisites

All styles in this project are written in the Sass language. So a preprocessor may be needed to form Cascading Style Sheets (CSS).

Please choose a implementation suitable for your needs from the Install Sass document.

For example in a Node.js environment you can install Sass with the Node package manager:

npm install -g sass

Installing

Clone the repository https://quelltext.interaktionsweise.de/interaktionsweise/hippie-style.git to a folder to get all source files.

To include HIPPIE styles to a Sass workflow, just import the main file at the appropriate position. Usually this would be at the beginning of your stylesheet:

@import "hippie/hippie";

It is also possible to link to the resulting CSS file. First the file needs to be compiled:

sass hippie/_hippie.scss stylesheets/hippie.css

Now the stylesheet can be included into the HTML document:

<link rel="stylesheet" type="text/css" href="stylesheets/hippie.css"/>

Versioning

This project uses SemVer for versioning. For the versions available, see the tags on this repository.

Authors

Stephan Hagedorn - Initial work - Interaktionsweise

License

This project is licensed under the MIT License - see the LICENSE.md file for details.