odoo/addons/website/static/src/css/website.css

101 lines
1.6 KiB
CSS

/* vim:tabstop=4:shiftwidth=4:softtabstop=4:fdm=marker:fdl=0
*/
@charset "utf-8";
.oe_website {
background: #e9e9e9;
color: #646464;
}
.oe_website_header {
background: #fff;
color: #333;
padding-top: 8px;
}
/* Body {{{ */
.oe_website_body {
background: #fff;
color: #333;
padding-bottom: 32px;
padding-top: 32px;
}
/* }}} */
/* Footer {{{ */
.oe_website_footer {
border-top: solid 1px #e0e0e0;
padding-bottom: 32px;
padding-top: 32px;
}
.oe_website_footer h5 {
border-bottom: solid 1px rgba(0, 0, 0, 0.06);
margin-right: 24px;
padding-bottom: 6px;
margin-bottom: 6px;
margin-top: 24px;
}
.oe_website_footer ul {
list-style: none;
padding: 0;
margin: 0;
}
.oe_website_footer ul li {
display: block;
margin-bottom: 4px;
font-size: 14px;
margin-right: 32px;
}
.oe_website_footer ul li a {
color: inherit;
text-decoration: inherit;
}
.oe_website_footer ul li a:visited {
color: inherit;
text-decoration: inherit;
}
.oe_website_footer ul li a:hover {
color: black;
text-decoration: inherit;
}
.oe_website_copy {
margin-top: 24px;
margin-bottom: 6px;
}
/* }}} */
/* Editor {{{ */
.oe_website_editorbar {
position: fixed;
top: 0;
right: 0;
z-index: 10;
display: block;
width: 100%;
padding: 10px;
margin: 0px;
background: #e9e9e9;
box-sizing: border-box;
}
.oe_website_editorbar li {
display: inline;
}
.oe_website_editor_container .oe_editable {
outline: 1px dotted green;
}
.oe_website_editor_container .oe_editable.oe_dirty {
outline: 1px dotted red;
}
/* }}} */