mirror of
https://github.com/ansible/awx.git
synced 2026-02-03 10:38:15 -03:30
56 lines
891 B
Plaintext
56 lines
891 B
Plaintext
/*********************************************
|
|
* Copyright (c) 2014 AnsibleWorks, Inc.
|
|
*
|
|
* main-layout.css
|
|
*
|
|
* primary page layout styles
|
|
*
|
|
*/
|
|
|
|
html, body { height: 100%; }
|
|
|
|
html {
|
|
background-color: @white;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-weight: 400;
|
|
padding-top: 65px;
|
|
color: @black;
|
|
}
|
|
|
|
#main-menu-container {
|
|
.navbar {
|
|
margin-bottom: 0;
|
|
}
|
|
.navbar-brand {
|
|
position: absolute;
|
|
top: 3px;
|
|
left: 15px;
|
|
padding: 0px 15px 0 15px;
|
|
img {
|
|
width: 42px;
|
|
}
|
|
}
|
|
.navbar-collapse {
|
|
margin-left: 42px;
|
|
}
|
|
}
|
|
|
|
#content-container {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
.group-breadcrumbs {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
#main-menu-container {
|
|
#account-menu {
|
|
margin-right: 60px;
|
|
float: right;
|
|
}
|
|
}
|
|
} |