yunohost-admin/css/style.less

204 lines
3 KiB
Text
Raw Normal View History

2014-03-14 18:14:45 +01:00
@import "../bootstrap/less/bootstrap.less";
/* Comments:
*
* 1. we need to rationalise the use of width and max widths. they seem to be
* completely arbitrarily chosen. May not allow for a lot of flexibility…
* especially on different screens size.
*
*/
2014-03-14 18:14:45 +01:00
2014-03-14 18:33:37 +01:00
html, body {
width:100%;
}
2014-03-14 18:14:45 +01:00
.block {
float:left;
height: 100%;
max-width: 750px;
width: 50%;
height: 100%;
padding: 5px;
}
.move {
-webkit-transition: margin-left 0.4s ease-in-out;
-moz-transition: margin-left 0.4s ease-in-out;
-o-transition: margin-left 0.4s ease-in-out;
-ms-transition: margin-left 0.4s ease-in-out;
transition: margin-left 0.4s ease-in-out;
}
.placehold {
font-size: 0.0001em;
color: transparent;
}
2014-03-14 18:33:37 +01:00
/*
* The top heading of the doc
*
*/
2014-03-14 18:14:45 +01:00
2014-03-14 18:33:37 +01:00
#masthead {
.page-header;
.clearfix;
.hidden-xs;
.make-row(12);
margin-top: 0;
padding: 0 10px;
.app.title, .logout-button {
margin-top: 20px;
}
2014-03-14 18:33:37 +01:00
.app.title {
.make-sm-column(10);
.desc {
.small;
2014-03-14 19:20:35 +01:00
color: @gray-light;
2014-03-14 18:33:37 +01:00
}
}
.logout-button {
.make-sm-column(2);
2014-03-19 11:21:37 +01:00
.btn;
.btn-link;
2014-03-19 11:43:19 +01:00
text-align: right;
2014-03-19 11:31:04 +01:00
a.fa-sign-out {
.fa;
.fa-2x;
2014-03-14 18:33:37 +01:00
}
}
}
/*
* The “slider”
*
*/
2014-03-14 18:33:37 +01:00
#slider {
.center-block;
padding: 5px;
max-width: 750px;
width: 100%;
height: 100%;
position: relative;
overflow: hidden;
text-align: left;
}
#slider-container {
max-width: 1500px;/*[RFC] why the max-width? */
width: 1500px;
height: 100%;
}
#slideBack, #slideTo, #main {
.block;
}
/*
* The main part of the app
*
*/
2014-03-14 18:33:37 +01:00
#main {
float: left;
overflow: hidden;
}
.ajax-loader {
.placehold;
background: url(/img/ajax-loader.gif) 50% 50% no-repeat transparent;
width: 24px;
height: 24px;
2014-03-14 18:33:37 +01:00
}
/*
* The pop up dialog
*
*/
#popup {
.modal;
.fade;
.modal-dialog;
#popup-title {
.modal-dialog;
.modal-content;
.modal-header;
.modal-title;
}
#popup-body {
.modal-dialog;
.modal-content;
.modal-body;
}
2014-03-14 18:33:37 +01:00
}
/*
* Various styles
*
*/
2014-03-14 18:33:37 +01:00
body .form-control {
padding: 6px;
}
.view-title {
text-align: center;
font-size: 25px;
margin: -35px 120px 0 120px;
}
div.br {
height: 30px;
}
.loader-content {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 2000;
text-align: center;
background: rgba(255, 255, 255, 0.5);
padding-top: 10%;
}
2014-03-14 18:33:37 +01:00
.loader-content img {
display: inline-block;
vertical-align: middle;
}
.help-block {
text-align: right;
}
th h3,
th h4 {
margin-bottom: 5px;
font-weight: bold;
}
th h4 {font-size: 16px;}
th h4 small {font-size: 12px;}
select option[default] {
color: #999;
font-style: italic;
}
2014-03-14 18:14:45 +01:00
2014-03-19 11:53:39 +01:00
@import "fonts.css";
/* TODO remove all glyphicons in the future to remove this line*/
2014-03-19 11:31:04 +01:00
@import "font-awesome.less";
2014-03-19 11:50:30 +01:00
/* various fixes */
a[class*="fa-"]:hover {text-decoration:none;}