forked from verdnatura/hedera-web
332 lines
3.9 KiB
CSS
332 lines
3.9 KiB
CSS
|
|
||
|
/* Global */
|
||
|
|
||
|
@font-face {
|
||
|
font-family: 'Open Sans';
|
||
|
src: url(opensans.ttf) format('truetype');
|
||
|
}
|
||
|
body
|
||
|
{
|
||
|
margin: 0px;
|
||
|
}
|
||
|
body,
|
||
|
label,
|
||
|
button,
|
||
|
input,
|
||
|
textarea
|
||
|
{
|
||
|
font-size: 13px;
|
||
|
font-family: 'Open Sans', 'Verdana', 'Sans';
|
||
|
}
|
||
|
iframe
|
||
|
{
|
||
|
border: 0px;
|
||
|
}
|
||
|
fieldset,
|
||
|
div
|
||
|
{
|
||
|
margin: 0px;
|
||
|
}
|
||
|
form
|
||
|
{
|
||
|
padding: 0px;
|
||
|
margin: 0px;
|
||
|
}
|
||
|
table
|
||
|
{
|
||
|
width: 100%;
|
||
|
}
|
||
|
a:link,
|
||
|
a:visited,
|
||
|
a:active
|
||
|
{
|
||
|
color: #000;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
a:hover
|
||
|
{
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
a img
|
||
|
{
|
||
|
padding: 1px;
|
||
|
border: 1px solid #EEE;
|
||
|
border-color: transparent;
|
||
|
}
|
||
|
a img:hover
|
||
|
{
|
||
|
border-color: #999;
|
||
|
}
|
||
|
h1, h2, h3, h4, h5, h6
|
||
|
{
|
||
|
margin: 0px;
|
||
|
padding: 2px;
|
||
|
}
|
||
|
h1
|
||
|
{
|
||
|
font-size: 22px;
|
||
|
}
|
||
|
h2
|
||
|
{
|
||
|
font-size: 20px;
|
||
|
}
|
||
|
p
|
||
|
{
|
||
|
margin: 0px;
|
||
|
margin-top: 16px;
|
||
|
margin-bottom: 16px;
|
||
|
}
|
||
|
div.clear
|
||
|
{
|
||
|
clear: both;
|
||
|
}
|
||
|
|
||
|
|
||
|
/* Inputs */
|
||
|
|
||
|
input,
|
||
|
textarea,
|
||
|
button
|
||
|
{
|
||
|
border: 1px solid #CCD;
|
||
|
margin: 2px;
|
||
|
padding: 4px;
|
||
|
border-radius: 2px;
|
||
|
/* box-shadow: 0px 2px 2px #AAA; */
|
||
|
}
|
||
|
textarea
|
||
|
{
|
||
|
height: 40px;
|
||
|
width: 200px;
|
||
|
}
|
||
|
input[type=submit],
|
||
|
input[type=button],
|
||
|
button
|
||
|
{
|
||
|
background-color: #EEF;
|
||
|
padding: 4px;
|
||
|
}
|
||
|
input[type=text]:focus,
|
||
|
input[type=password]:focus,
|
||
|
textarea:focus
|
||
|
{
|
||
|
background-color: #EEF;
|
||
|
border-color: #BBC;
|
||
|
}
|
||
|
input[type=submit]:hover,
|
||
|
input[type=button]:hover,
|
||
|
button:hover
|
||
|
{
|
||
|
cursor: pointer;
|
||
|
background-color: #DDE;
|
||
|
}
|
||
|
|
||
|
/* Grid */
|
||
|
|
||
|
table.grid
|
||
|
{
|
||
|
width: 95%;
|
||
|
margin: auto;
|
||
|
border-collapse: collapse;
|
||
|
text-align: center;
|
||
|
margin-bottom: 15px;
|
||
|
}
|
||
|
table.grid thead tr,
|
||
|
table.grid tfoot tr
|
||
|
{
|
||
|
/* background-color: #C0CCB3;
|
||
|
background: url(image/gradient.png) repeat-x scroll 0;
|
||
|
*/
|
||
|
background-color: #EEF;
|
||
|
border: 1px solid #CCD;
|
||
|
color: black;
|
||
|
font-weight: bold;
|
||
|
vertical-align: middle;
|
||
|
text-align: center;
|
||
|
height: 30px;
|
||
|
}
|
||
|
table.grid thead th
|
||
|
{
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
table.grid thead th:hover
|
||
|
{
|
||
|
background-color: #DDE;
|
||
|
}
|
||
|
table.grid tr
|
||
|
{
|
||
|
height: 35px;
|
||
|
}
|
||
|
table.grid tfoot a,
|
||
|
table.grid thead a
|
||
|
{
|
||
|
color: black;
|
||
|
}
|
||
|
table.grid tr.pair-row
|
||
|
{
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
td.grid-message
|
||
|
{
|
||
|
height: 80px;
|
||
|
}
|
||
|
td.grid-message img
|
||
|
{
|
||
|
vertical-align: middle;
|
||
|
padding: 10px;
|
||
|
}
|
||
|
table.grid tbody td
|
||
|
{
|
||
|
padding-right: 8px;
|
||
|
padding-left: 8px;
|
||
|
}
|
||
|
input.cell-spin
|
||
|
{
|
||
|
width: 25px;
|
||
|
text-align: right;
|
||
|
}
|
||
|
button.cell-button
|
||
|
{
|
||
|
margin: 6px;
|
||
|
border: none;
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
|
||
|
/* Calendar */
|
||
|
|
||
|
.calendar
|
||
|
{
|
||
|
width: 220px;
|
||
|
background-color: white;
|
||
|
border: 1px solid #CCD;
|
||
|
border-radius: 2px;
|
||
|
box-shadow: 0px 2px 2px #AAA;
|
||
|
}
|
||
|
.calendar table
|
||
|
{
|
||
|
border-collapse: collapse;
|
||
|
}
|
||
|
.calendar thead tr,
|
||
|
.calendar tfoot tr
|
||
|
{
|
||
|
background-color: #EEF;
|
||
|
color: black;
|
||
|
font-weight: normal;
|
||
|
vertical-align: middle;
|
||
|
text-align: center;
|
||
|
height: 30px;
|
||
|
}
|
||
|
.calendar thead tr
|
||
|
{
|
||
|
border-bottom: 1px solid #CCD;
|
||
|
}
|
||
|
.calendar tfoot tr
|
||
|
{
|
||
|
border-top: 1px solid #CCD;
|
||
|
}
|
||
|
.calendar col
|
||
|
{
|
||
|
width: 14.2%;
|
||
|
}
|
||
|
.calendar tr
|
||
|
{
|
||
|
height: 22px;
|
||
|
}
|
||
|
.calendar tbody td
|
||
|
{
|
||
|
text-align: right;
|
||
|
padding-right: 6px;
|
||
|
}
|
||
|
.calendar td.highlight,
|
||
|
.calendar td:hover,
|
||
|
.button:hover
|
||
|
{
|
||
|
cursor: pointer;
|
||
|
background-color: #DDE;
|
||
|
}
|
||
|
|
||
|
/* Date chooser */
|
||
|
|
||
|
.date-chooser button
|
||
|
{
|
||
|
margin: 0px;
|
||
|
margin-right: 8px;
|
||
|
}
|
||
|
|
||
|
/* Full image */
|
||
|
|
||
|
div.full-image
|
||
|
{
|
||
|
position: fixed;
|
||
|
background-color: #FFF;
|
||
|
text-align: center;
|
||
|
border: 1px solid #999;
|
||
|
border-radius: 2px;
|
||
|
z-index: 2;
|
||
|
}
|
||
|
div.image-loader
|
||
|
{
|
||
|
position: fixed;
|
||
|
background-color: #FFF;
|
||
|
border: 1px solid #999;
|
||
|
border-radius: 2px;
|
||
|
z-index: 3;
|
||
|
}
|
||
|
div.image-loader img
|
||
|
{
|
||
|
padding: 10px;
|
||
|
}
|
||
|
|
||
|
/* Image editor */
|
||
|
|
||
|
img.editable
|
||
|
{
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
div.image-editor
|
||
|
{
|
||
|
background-color: white;
|
||
|
border: 1px solid #999;
|
||
|
border-radius: 2px;
|
||
|
padding: 12px;
|
||
|
width: 400px;
|
||
|
}
|
||
|
div.image-editor h3
|
||
|
{
|
||
|
text-align: center;
|
||
|
padding-bottom: 10px;
|
||
|
}
|
||
|
div.image-editor iframe
|
||
|
{
|
||
|
display: none;
|
||
|
}
|
||
|
div.image-editor button
|
||
|
{
|
||
|
margin-left: 5px;
|
||
|
margin-right: 5px;
|
||
|
}
|
||
|
div.image-editor img
|
||
|
{
|
||
|
visibility: hidden;
|
||
|
vertical-align: middle;
|
||
|
padding-right: 10px;
|
||
|
}
|
||
|
|
||
|
/* Form */
|
||
|
|
||
|
table.form
|
||
|
{
|
||
|
border-collapse: separate;
|
||
|
border-spacing: 4px;
|
||
|
}
|
||
|
table.form td.label
|
||
|
{
|
||
|
text-align: right;
|
||
|
}
|
||
|
table.form tr
|
||
|
{
|
||
|
height: 35px;
|
||
|
}
|
||
|
|
||
|
|