1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/theme/static/src/scss/index.scss

59 lines
1.1 KiB
SCSS
Raw Normal View History

2016-05-22 18:28:01 +01:00
@import "variables"; // Import variables before anything else
2016-05-15 17:42:35 +01:00
/* @group Fonts */
2016-05-17 13:46:23 +01:00
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700,300,300italic,400italic,700italic");
@import url("http://fonts.googleapis.com/css?family=Open+Sans:400,700,300,300italic,400italic,700italic");
2016-05-15 17:42:35 +01:00
/* @end Fonts */
2016-05-16 18:20:16 +01:00
2016-05-15 17:42:35 +01:00
/* @group Libraries */
@import "node_modules/bootstrap-sass/assets/stylesheets/_bootstrap";
2016-05-16 18:20:16 +01:00
@import "node_modules/animate.css/animate";
2016-05-15 17:42:35 +01:00
2016-05-16 21:46:16 +01:00
$fa-font-path: "../fonts";
2016-05-20 08:50:36 +01:00
@import "node_modules/font-awesome/scss/font-awesome";
2016-05-16 21:46:16 +01:00
2016-05-15 17:42:35 +01:00
/* @end Libraries */
2016-05-16 18:20:16 +01:00
/* @group Other Imports */
2016-05-15 17:42:35 +01:00
@import "creative/creative";
2016-05-23 17:38:13 +01:00
@import "pygment";
2016-05-15 17:42:35 +01:00
/* @end Other Imports */
2016-05-16 18:20:16 +01:00
2016-05-15 17:42:35 +01:00
@import "homepage";
2016-05-21 20:35:59 +01:00
@import "footer";
2016-05-22 18:28:01 +01:00
.panel-green {
@include panel-variant(#139F5B, $white, #139F5B, #139F5B);
}
.panel-blue {
@include panel-variant(#337AB7, $white, #337AB7, #337AB7);
}
2016-05-22 18:48:53 +01:00
.btn-primary-dark {
@include button-variant($white, $brand-orange-dark, $brand-orange-dark);
}
2016-05-23 17:38:13 +01:00
2016-05-24 09:07:04 +01:00
.highlight > pre {
2016-05-23 17:38:13 +01:00
background-color: transparent;
font-size: $font-size-base;
}
2016-05-24 09:07:04 +01:00
hr.wide {
width: 100%;
max-width: initial;
}