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/static/src/less/style.less

54 lines
987 B
Text
Raw Normal View History

2015-10-19 13:04:49 +01:00
@import "node_modules/bootstrap/less/bootstrap";
@import "node_modules/bootstrap/less/theme";
@import "node_modules/ionicons-pre/less/ionicons";
// @import url(https://fonts.googleapis.com/css?family=Roboto:400,300,400italic,700);
2015-11-09 14:13:17 +00:00
@import (inline) "node_modules/animate.css/animate.css";
@import (inline) "node_modules/normalize.css/normalize.css";
2015-11-12 18:20:42 +00:00
@import 'homepage';
2015-11-09 21:47:16 +00:00
/* @group Mixins */
.transition(@value) {
-webkit-transition: @value;
-moz-transition: @value;
-o-transition: @value;
-ms-transition: @value;
transition: @value;
}
.box-shadow(@value) {
-webkit-box-shadow: @value;
-moz-box-shadow: @value;
box-shadow: @value;
}
/* @end Mixins */
/* @group Global */
.btn {
2015-11-12 18:22:44 +00:00
.transition(~"ease-in-out .4s background-color");
2015-11-09 21:47:16 +00:00
}
html, body{
font-family: 'Roboto', sans-serif;
}
p {
}
ol , ul{
font-size: inherit;
& > li {
font-size: inherit
}
}
2015-11-11 16:32:51 +00:00
a.no-color-change {
color: inherit;
&:hover {
color: inherit;
}
}
2015-11-09 21:47:16 +00:00
/* @end Global */