1
0
mirror of https://github.com/danbee/cv synced 2025-03-04 08:59:12 +00:00
cv/source/css/style.css.scss
Dan Barber 4346f8a3ba Lots of changes and updates
* Start organizing CSS according to ITCSS

* Replace logo with rainbow db

* Add Imagine Learning to experience

* Refactor layout to use CSS grid
2023-06-25 18:13:26 -05:00

41 lines
1.4 KiB
SCSS
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// 0. Vendor - Imported from other source
@import "vendor/iconfont";
// 1. Settings used with preprocessors and contain font,
// colors definitions, etc.
// 2. Tools globally used mixins and functions.
// Its important not to output any CSS in the first 2 layers.
// 3. Generic reset and/or normalize styles, box-sizing definition, etc.
// This is the first layer which generates actual CSS.
@import "generic/box-sizing";
@import "generic/reset";
// 4. Elements styling for bare HTML elements (like H1, A, etc.).
// These come with default styling from the browser so we can redefine
// them here.
@import "elements/a";
@import "elements/abbr";
@import "elements/block";
@import "elements/body";
@import "elements/headings";
@import "elements/html";
@import "elements/lists";
// 5. Objects class-based selectors which define undecorated design patterns,
// for example media object known from OOCSS
@import "objects/container";
// 6. Components specific UI components.
// This is where majority of our work takes place and our UI components
// are often composed of Objects and Components
@import "components/stripe";
@import "components/header";
@import "components/logo";
@import "components/content";
// 7. Utilities utilities and helper classes with ability to override
// anything which goes before in the triangle, eg. hide helper class
@import "legacy";