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

77 lines
1.3 KiB
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";
2015-11-24 09:09:03 +00:00
// @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-23 20:44:37 +00:00
@import 'variables';
2015-11-12 18:20:42 +00:00
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{
2015-11-23 20:44:37 +00:00
font-family: @font-family-sans-serif;
2015-11-09 21:47:16 +00:00
}
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 */
2015-11-24 09:09:03 +00:00
/* @ group Footer */
footer {
width: 100%;
text-align: center;
2015-11-24 09:17:18 +00:00
padding-top: 10px;
padding-bottom: 10px;
2015-11-24 09:09:03 +00:00
color: white;
background-color: #232323;
a {
padding: 7px;
color: #ff7f00;
2015-11-24 09:22:46 +00:00
&:hover {
text-decoration: none;
color: inherit;
}
2015-11-24 09:09:03 +00:00
}
2015-11-24 09:17:18 +00:00
.ci-badge {
height: 23px;
margin-top: 15px;
}
2015-11-24 09:09:03 +00:00
}
/* @end Footer */