This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/public/content/data/broomcloset_old/css/manage.css
flashwave 32b7622791 r20151018.2
Signed-off-by: Flashwave <me@flash.moe>
2015-10-18 21:06:30 +02:00

115 lines
1.8 KiB
CSS
Executable file

/*
* Broom Closet
*/
@charset "utf-8";
/* Standard Elements */
* {
/* Reset margin and padding */
margin: 0;
padding: 0;
}
html {
width: 100%;
height: 100%;
}
body {
font: 12px/20px "Segoe UI", sans-serif;
background: #EEE;
color: #000;
height: 100%;
position: relative;
width: 100%;
}
#container {
min-height: 100%;
position: relative;
width: 100%;
}
.clear {
clear: both !important;
float: none !important;
}
.hidden {
display: none !important;
visibility: hidden !important;
}
a {
color: #22E;
text-decoration: none;
}
a:hover {
color: #22E;
text-decoration: underline;
}
a:active {
color: #E22;
}
/* Page header */
.header {
background: #222;
color: #FFF;
margin-bottom: 10px;
box-shadow: 0 0 1em #222;
}
.header > .logo {
font-size: 3em;
line-height: 1.7em;
margin: 0 20px;
display: inline-block;
}
.header > .logo > a {
color: inherit !important;
text-decoration: none !important;
}
.header > .nav {
padding: 0 0 10px 10px;
font-size: 1.3em;
line-height: 1.4em;
cursor: default;
}
.header > .nav > div > * {
display: inline-block;
}
.header > .nav > div > div {
min-width: 160px;
}
.header > .nav > div > a {
color: #DDD;
text-decoration: none !important;
padding: 0 5px 2px;
transition: .2s;
}
.header > .nav > div > a:hover {
background: #333;
}
.header > .nav > div > a:active {
text-shadow: 0 0 1em #F1F1F1;
}
/* Page footer */
.footer {
background: #222;
text-align: center;
padding-top: 1px;
margin-top: 10px;
box-shadow: 0 0 1em #222;
position: absolute;
bottom: 0;
left: 0;
right: 0;
}
/* Page content */
#contentwrapper {
padding-bottom: 50px;
}