This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/themes/zuitedesk/css/pages.css
2017-10-01 23:20:19 +02:00

219 lines
4 KiB
CSS

/**
* @file
* Page Styling.
*/
body.elfinder {
overflow: hidden;
}
/*
* Page background.
*/
#page-wrapper {
background-color: #ebeae9;
}
#main {
background: #fff;
padding-top: 30px;
}
#page,
#main-wrapper {
background: transparent url(../images/bg-page.png) repeat-x 0 bottom;
}
#page-title {
background-color: #fcfcfc;
border-top: 1px solid #003346;
border-bottom: 1px solid #e1e1e1;
padding: 9px 0;
}
#page-title .title {
color: #ff3300;
line-height: 1em;
margin-top: 0;
margin-bottom: 6px;
}
#page-title .stormcomponent {
position: absolute;
margin-top: 8px;
}
#page-title .stormcomponent + .title {
margin-left: 44px;
}
#page-title .stormcomponent + .title + .breadcrumb {
margin-left: 46px;
}
@media (max-width: 699px) {
#page-title .stormcomponent {
display: none;
}
#page-title .stormcomponent + .title,
#page-title .stormcomponent + .title + .breadcrumb {
margin-left: 0;
}
}
/*
* Login page layout.
*/
body.not-logged-in[class*="page-user"] {
background: #ebeae9 url(../images/bg-login.jpg) no-repeat fixed center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
min-height: 100%;
padding-bottom: 80px;
}
body.not-logged-in[class*="page-user"] #main {
margin: 20px auto 0;
max-width: 400px;
padding: 20px;
background: rgba(252, 255, 255, 0.85);
}
@media (max-width: 450px) {
body.not-logged-in[class*="page-user"] #main {
margin: 10px 10px 0;
padding: 10px 0;
}
body.not-logged-in[class*="page-user"] #main-content div.tabs + .section {
padding-top: 1em;
}
}
body.not-logged-in[class*="page-user"] #main-content {
padding: 0;
}
body.not-logged-in[class*="page-user"] #main-content .section {
background: transparent;
min-height: inherit;
padding-bottom: 0;
}
body.not-logged-in[class*="page-user"] #page,
body.not-logged-in[class*="page-user"] #page-wrapper,
body.not-logged-in[class*="page-user"] #main-wrapper,
body.not-logged-in[class*="page-user"] #main-content div.tabs {
background: transparent;
}
body.not-logged-in[class*="page-user"] #page-title {
display: none;
}
body.not-logged-in[class*="page-user"] #socket {
width: 100%;
position: fixed;
bottom: 0;
}
/*
* Header.
*/
#header {
position: relative;
}
/*
* Main content.
*/
#main-content .section {
position: relative;
background: #fff;
}
.breadcrumb {
margin: 0;
padding: 0;
background: none;
font-size: 13px;
font-weight: bold;
color: #aaa;
}
#submitted {
position: relative;
background: #d0ceba;
width: 4em;
height: 4em;
float: left;
}
#submitted em {
display: none;
}
#submitted span {
display: block;
position: absolute;
white-space: nowrap;
word-wrap: normal;
overflow: hidden;
font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
text-indent: -0.035em;
color: #fff;
}
#submitted span.postd {
top: 0;
width: .95em;
height: .75em;
font-size: 3.6em;
line-height: .8em;
}
#submitted span.postm {
top: .25em;
left: 3.2em;
width: .7em;
height: 2.25em;
font-size: 1.012em;
line-height: .7em;
text-indent: 0;
text-align: right;
white-space: normal;
word-wrap: break-word;
text-transform: uppercase;
}
#submitted span.posty {
top: 1.05em;
width: 1.86em;
height: .765em;
line-height: 1em;
font-size: 2.16em;
}
/*
* Footer.
*/
#footer {
background-color: #003346;
}
#scroll-top-link {
cursor: pointer;
color: #e1e1e1;
border: 1px solid #aaa;
border-radius: 2px;
text-align: center;
width: 50px;
height: 50px;
line-height: 50px;
font-size: 36px;
position: fixed;
bottom: 50px;
right: 50px;
display: none;
background: rgba(85,99,114,0.3);
-webkit-transition: background-color .5s;
-moz-transition: background-color .5s;
-o-transition: background-color .5s;
-ms-transition: background-color .5s;
transition: background-color .5s;
z-index: 1030;
}
#scroll-top-link:before {
margin: 0;
}
#scroll-top-link:hover {
background-color: #000;
}
@media (max-width: 767px) {
#scroll-top-link.edition {
display: none !important;
}
}