This is where HIPPIE gets pretty
Find a file
Stephan Hagedorn bf818600f8 Simplified media queries
- Switched to pixel based values again to fix error
- Future version should use em values again
2022-08-11 21:40:10 +02:00
elements Added link style 2021-03-14 20:30:58 +01:00
functions added current state from hippie main repo 2019-11-12 20:18:02 +01:00
global Fixes to SASS 2022-08-08 21:45:53 +02:00
mixins Simplified media queries 2022-08-11 21:40:10 +02:00
modules Fixes to SASS 2022-08-08 21:45:53 +02:00
.gitignore added sprite file to gitignore 2020-05-24 17:33:05 +02:00
_abovethefold.scss added current state from hippie main repo 2019-11-12 20:18:02 +01:00
_basic.scss moved vendor mixin 2020-02-01 13:52:04 +01:00
_hippie.scss Moved card module to hippie 2021-03-14 21:44:05 +01:00
LICENSE.md Added README and removed dependency 2020-01-05 16:32:26 +01:00
README.md Added README and removed dependency 2020-01-05 16:32:26 +01: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://github.com/sthag/hippie-styles.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

See also the list of contributors who participated in this project.

License

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