68 lines
No EOL
1.2 KiB
Text
68 lines
No EOL
1.2 KiB
Text
@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);
|
|
@import (inline) "node_modules/animate.css/animate.css";
|
|
@import (inline) "node_modules/normalize.css/normalize.css";
|
|
@import 'homepage';
|
|
@import 'variables';
|
|
|
|
|
|
/* @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 {
|
|
.transition(~"ease-in-out .4s background-color");
|
|
}
|
|
|
|
html, body{
|
|
font-family: @font-family-sans-serif;
|
|
}
|
|
|
|
p {
|
|
|
|
}
|
|
|
|
ol , ul{
|
|
font-size: inherit;
|
|
& > li {
|
|
font-size: inherit
|
|
}
|
|
}
|
|
|
|
a.no-color-change {
|
|
color: inherit;
|
|
&:hover {
|
|
color: inherit;
|
|
}
|
|
}
|
|
/* @end Global */
|
|
|
|
/* @ group Footer */
|
|
footer {
|
|
width: 100%;
|
|
text-align: center;
|
|
padding-top: 25px;
|
|
color: white;
|
|
background-color: #232323;
|
|
a {
|
|
padding: 7px;
|
|
color: #ff7f00;
|
|
}
|
|
}
|
|
/* @end Footer */ |