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

147 lines
2.4 KiB
Text
Raw Normal View History

2015-12-28 17:50:41 +00:00
@import "node_modules/less-mixins/index.less";
2015-10-19 13:04:49 +01:00
@import "node_modules/bootstrap/less/bootstrap";
@import "node_modules/bootstrap/less/theme";
2015-12-28 11:50:33 +00:00
@import "node_modules/ionicons/less/ionicons";
2015-12-28 17:50:41 +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 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-29 18:01:39 +00:00
font-size: 16px;
2015-11-28 11:45:32 +00:00
height: 100%;
width: 100%;
2015-11-09 21:47:16 +00:00
}
p {
2015-11-24 13:16:05 +00:00
a {
.transition(color 0.4s);
}
2015-11-09 21:47:16 +00:00
}
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
2015-12-28 17:50:41 +00:00
/* @group Footer */
2015-11-24 09:09:03 +00:00
footer {
width: 100%;
text-align: center;
2015-11-24 09:17:18 +00:00
padding-top: 10px;
2015-11-24 13:16:05 +00:00
padding-bottom: 50px;
2015-11-24 09:09:03 +00:00
color: white;
2015-12-28 18:12:39 +00:00
font-size: 16px;
2015-11-24 09:09:03 +00:00
background-color: #232323;
a {
color: #ff7f00;
2015-11-29 20:11:09 +00:00
padding: 7px;
2015-11-24 09:22:46 +00:00
&:hover {
text-decoration: none;
color: inherit;
}
2015-11-24 09:09:03 +00:00
}
2015-12-28 17:50:41 +00:00
.social {
font-size: 25px;
margin: 0;
margin-top: 6px;
a {
margin: 0 4px;
color: white;
&:hover {
color: #ff7f00;
}
}
}
2015-11-24 09:17:18 +00:00
.ci-badge {
height: 23px;
2015-12-28 17:50:41 +00:00
margin-top: 10px;
2015-11-24 09:17:18 +00:00
}
2015-11-24 09:09:03 +00:00
}
2015-11-25 08:09:36 +00:00
/* @end Footer */
/* @group 404 */
.four-o-four {
.header {
height: 15vh;
font-size: 35px;
text-align: center;
}
.image {
background: url(../img/ninjas.png);
background-size: cover;
background-position: center;
height: 70vh;
}
.message {
height: 15vh;
color: white;
background-color: #232323;
text-align: center;
}
.move-on {
text-align: center;
background-color: #333;
color: white;
height: 5vh;
}
}
2015-11-25 09:37:41 +00:00
/* @end 404 */
/* @group no-js */
.no-js {
.header {
background-color: #232323;
color: white;
}
#ie-scare {
height: 150px;
float: right;
}
}
2015-11-25 19:39:11 +00:00
/* @end no-js*/
/* @group content base */
.jumbotron.header {
padding-top: 10px;
padding-bottom: 10px;
background-color: #232323;
color: white;
2015-11-28 11:45:32 +00:00
.box-shadow(0px 8px 10px 3px rgba(0,0,0,0.6));
margin-bottom: 27px;
h1 {
margin: 25px 0;
}
2015-11-25 19:39:11 +00:00
}
2015-11-28 11:45:32 +00:00
/* @end content base */
.panel {
.box-shadow(0px 4px 4px 3px rgba(0,0,0,0.6));
2015-11-29 20:11:09 +00:00
margin-bottom: 40px;
2015-12-28 11:50:33 +00:00
}
2015-12-28 16:32:13 +00:00
.row {
width: 100%;
}
.gh-card iframe {
.box-shadow(0px 4px 4px 3px rgba(0,0,0,0.6));
}