0
1
Fork 0
hedera-web-mindshore/package/usr/share/hedera-web/global/style.css

628 lines
7.7 KiB
CSS
Raw Normal View History

2015-01-31 01:05:12 +00:00
/* Responsive */
@media screen
2015-03-06 23:33:54 +00:00
{
* { font-size: 8pt; }
}
@media screen and (min-device-width: 1150px)
2015-01-31 01:05:12 +00:00
{
* { font-size: 10pt; }
}
2015-03-06 23:33:54 +00:00
@media screen and (min-device-width: 1850px)
2015-01-31 01:05:12 +00:00
{
2015-02-08 15:38:38 +00:00
* { font-size: 11pt; }
2015-01-31 01:05:12 +00:00
}
/* Global */
2015-03-15 12:44:57 +00:00
@font-face
{
font-family: 'Open Sans';
src: url(opensans.ttf) format('truetype');
}
body
{
margin: 0px;
}
body,
label,
button,
input,
textarea
{
2015-01-31 01:05:12 +00:00
font-size: 1em;
font-family: 'Open Sans', 'Verdana', 'Sans';
}
iframe
{
2015-02-08 15:38:38 +00:00
border: 0;
}
fieldset,
div
{
2015-01-31 01:05:12 +00:00
margin: 0;
}
form
{
2015-01-31 01:05:12 +00:00
padding: 0;
margin: 0;
}
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
{
2015-01-31 01:05:12 +00:00
margin: 0;
padding: 0.2em;
}
h1
{
2015-01-31 01:05:12 +00:00
font-size: 1.5em;
}
h2
{
2015-01-31 01:05:12 +00:00
font-size: 1.3em;
}
p
{
2015-01-31 01:05:12 +00:00
margin: 0;
margin-top: 16px;
margin-bottom: 16px;
}
/* Inputs */
input,
textarea,
2015-02-08 15:38:38 +00:00
select
{
border: 1px solid #CCD;
2015-02-01 03:21:54 +00:00
margin: 0.2em;
padding: 0.3em;
border-radius: 0.1em;
2015-02-08 15:38:38 +00:00
box-shadow: 0 0.1em 0.1em #CCC;
}
select
{
background-color: white;
cursor: pointer;
padding: 0.4em;
padding-top: 0.2em;
font-size: 1.1em;
}
2015-02-17 11:48:53 +00:00
input[type=text],
input[type=password]
{
height: 1.6em;
}
textarea
{
2015-01-31 01:05:12 +00:00
height: 3.5em;
width: 20em;
}
input[type=text]:focus,
input[type=password]:focus,
textarea:focus
{
background-color: #EEF;
border-color: #BBC;
}
2015-02-01 03:21:54 +00:00
input[type=checkbox],
input[type=radio]
2015-01-31 01:05:12 +00:00
{
cursor: pointer;
2015-01-31 01:05:12 +00:00
width: 0.8em;
height: 0.8em;
}
2015-02-17 11:48:53 +00:00
/* Buttons */
button,
input[type=submit],
input[type=button]
2015-02-08 15:38:38 +00:00
{
border: none;
background-color: transparent;
2015-02-08 15:38:38 +00:00
color: white;
padding: 0.5em;
cursor: pointer;
}
2015-02-17 11:48:53 +00:00
button:hover,
input[type=submit]:hover,
input[type=button]:hover
{
background-color: #EEE;
2015-02-17 11:48:53 +00:00
}
/* Flat button */
button.flat,
input.button
2015-01-31 01:05:12 +00:00
{
border: none;
border-radius: 0.1em;
box-shadow: 0 0.2em 0.2em #DDD;
2015-02-08 15:38:38 +00:00
background-color: #AD4;
color: black;
2015-01-31 01:05:12 +00:00
}
button.flat:hover,
input.button:hover
2015-01-31 01:05:12 +00:00
{
background-color: #9C3;
cursor: pointer;
}
/* Thin button */
button.thin
{
background-color: transparent;
border: none;
color: #008D77;
}
button.thin:hover
{
background-color: rgba(1,1,1,0.1);
}
2015-03-06 23:33:54 +00:00
/* Image */
img.editable
{
cursor: pointer;
}
/* Button */
.htk-button img
{
height: 1.5em;
}
2015-02-08 15:38:38 +00:00
/* Date chooser */
2015-01-31 01:05:12 +00:00
2015-03-15 12:44:57 +00:00
.htk-date-chooser button
2015-01-31 01:05:12 +00:00
{
2015-02-08 15:38:38 +00:00
border: 1px solid #CCD;
margin: 0.2em;
padding: 0.3em;
border-radius: 0.1em;
box-shadow: 0 0.1em 0.1em #CCC;
background-color: white;
color: black;
text-align: left;
2015-02-17 11:48:53 +00:00
min-width: 9em;
2015-02-08 15:38:38 +00:00
min-height: 2.3em;
2015-01-31 01:05:12 +00:00
}
2015-02-08 15:38:38 +00:00
/* Float */
2015-01-31 01:05:12 +00:00
2015-02-08 15:38:38 +00:00
div.clear
2015-01-31 01:05:12 +00:00
{
2015-02-08 15:38:38 +00:00
clear: both;
2015-01-31 01:05:12 +00:00
}
/* Box */
div.box
{
background-color: white;
margin: 0 auto;
border-radius: 0.1em;
box-shadow: 0 0.2em 0.2em #CCC;
}
2015-02-08 15:38:38 +00:00
div.box .header
2015-01-31 01:05:12 +00:00
{
2015-02-08 15:38:38 +00:00
padding: 0.6em 0.8em;
margin: 0;
color: white;
background-color: #009688;
2015-01-31 01:05:12 +00:00
}
2015-02-08 15:38:38 +00:00
div.box .header h1
2015-01-31 01:05:12 +00:00
{
2015-02-08 15:38:38 +00:00
text-align: left;
2015-02-17 11:48:53 +00:00
font-size: 1.6em;
line-height: 2em;
2015-02-08 15:38:38 +00:00
font-weight: normal;
display: inline;
2015-01-31 01:05:12 +00:00
}
2015-02-08 15:38:38 +00:00
div.box .body
2015-01-31 01:05:12 +00:00
{
2015-02-08 15:38:38 +00:00
padding: 2em;
2015-02-01 03:21:54 +00:00
}
/* Form */
div.form
{
margin: 0 auto;
}
div.form-group
{
padding: 0.4em;
}
div.form-group > label
{
display: block;
margin-bottom: 0.5em;
}
div.form-group > input[type=text],
div.form-group > input[type=password],
div.form-group > select,
div.form-group > textarea
{
margin: 0;
width: 100%;
}
2015-02-01 03:21:54 +00:00
/* Action bar */
div.action-bar
{
float: right;
padding: 0;
margin-top: 0.3em;
2015-02-08 15:38:38 +00:00
background-color: #009688;
2015-02-01 03:21:54 +00:00
}
div.action-bar > *
2015-02-01 03:21:54 +00:00
{
float: left;
padding: 0.4em;
}
div.action-bar > button
{
2015-02-08 15:38:38 +00:00
border-left: 1px solid white;
background-color: #009688;
2015-02-08 15:38:38 +00:00
}
div.action-bar > button:first-child
2015-02-08 15:38:38 +00:00
{
border-left: none;
2015-02-01 03:21:54 +00:00
}
div.action-bar > button:hover
{
background-color: #076;
}
div.action-bar > button > img
2015-02-01 03:21:54 +00:00
{
vertical-align: middle;
margin-right: 0.4em;
height: 1.4em;
2015-01-31 01:05:12 +00:00
}
2015-02-08 15:38:38 +00:00
/* Form */
table.form
{
padding: 1em;
border-collapse: separate;
border-spacing: 0.3em;
}
table.form td.label
{
width: 45%;
text-align: right;
}
table.form tr
{
height: 2.8em;
}
/* Icon */
img.icon
{
height: 1.5em;
}
/* Grid */
2015-03-06 23:33:54 +00:00
table.htk-grid
{
margin: auto;
border-collapse: collapse;
text-align: center;
}
2015-03-06 23:33:54 +00:00
table.htk-grid thead tr,
table.htk-grid tfoot tr
{
2015-03-15 12:44:57 +00:00
background-color: #009688;
color: white;
vertical-align: middle;
text-align: center;
2015-02-08 15:38:38 +00:00
height: 3em;
}
2015-03-06 23:33:54 +00:00
table.htk-grid thead th
{
cursor: pointer;
2015-02-08 15:38:38 +00:00
font-weight: normal;
2015-02-01 03:21:54 +00:00
padding: 0 0.4em;
}
2015-03-06 23:33:54 +00:00
table.htk-grid thead th:hover
{
2015-03-15 12:44:57 +00:00
background-color: #076;
}
2015-03-06 23:33:54 +00:00
table.htk-grid tr
{
2015-01-31 01:05:12 +00:00
height: 3.5em;
}
2015-03-06 23:33:54 +00:00
table.htk-grid tfoot a,
table.htk-grid thead a
{
color: black;
}
2015-03-06 23:33:54 +00:00
table.htk-grid tr.pair-row
{
background-color: transparent;
}
td.grid-message
{
2015-02-01 03:21:54 +00:00
height: 5em;
}
td.grid-message img
{
vertical-align: middle;
2015-02-01 03:21:54 +00:00
padding: 0.8em;
height: 1.8em;
}
2015-03-06 23:33:54 +00:00
table.htk-grid tbody tr
2015-02-08 15:38:38 +00:00
{
border-top: 1px solid #DDD;
}
2015-03-06 23:33:54 +00:00
table.htk-grid tbody tr:first-child
2015-02-08 15:38:38 +00:00
{
border-top: none;
}
2015-03-06 23:33:54 +00:00
table.htk-grid tbody td
{
2015-02-01 03:21:54 +00:00
padding-right: 0.7em;
padding-left: 0.3em;
}
2015-03-06 23:33:54 +00:00
table.htk-grid tbody td:first-child,
table.htk-grid thead th:first-child
2015-02-08 15:38:38 +00:00
{
padding-left: 1em;
}
2015-03-06 23:33:54 +00:00
table.htk-grid tbody td:last-child,
table.htk-grid thead th:last-child
2015-02-08 15:38:38 +00:00
{
padding-right: 1em;
}
input.cell-spin
{
2015-01-31 01:05:12 +00:00
width: 2.5em;
text-align: right;
}
button.cell-button
{
2015-02-01 03:21:54 +00:00
margin: 0;
padding: 0;
border: none;
background-color: transparent;
}
2015-01-31 01:05:12 +00:00
button.cell-button img
{
height: 1.5em;
}
2015-03-15 12:44:57 +00:00
/* Repater */
.htk-repeater > .message
{
margin: 0 auto;
width: 10em;
padding: 1em;
}
.htk-repeater > .message > img
{
vertical-align: middle;
padding: 0.8em;
height: 1.8em;
}
/* Calendar */
2015-03-06 23:33:54 +00:00
.htk-calendar
{
2015-01-31 01:05:12 +00:00
width: 20em;
background-color: white;
2015-03-06 23:33:54 +00:00
border: none;
}
2015-03-06 23:33:54 +00:00
.htk-calendar table
{
border-collapse: collapse;
}
2015-03-06 23:33:54 +00:00
.htk-calendar thead tr,
.htk-calendar tfoot tr
{
2015-03-06 23:33:54 +00:00
background-color: #009688;
2015-02-08 15:38:38 +00:00
color: white;
font-weight: normal;
vertical-align: middle;
text-align: center;
2015-01-31 01:05:12 +00:00
height: 3em;
}
2015-03-06 23:33:54 +00:00
.htk-calendar thead tr
{
2015-03-06 23:33:54 +00:00
border-bottom: none;
}
2015-03-06 23:33:54 +00:00
.htk-calendar tfoot tr
{
2015-03-06 23:33:54 +00:00
border-top: none;
}
2015-03-06 23:33:54 +00:00
.htk-calendar th.button:hover
2015-02-17 11:48:53 +00:00
{
cursor: pointer;
background-color: #076;
}
2015-03-06 23:33:54 +00:00
.htk-calendar col
{
width: 14.2%;
}
2015-03-06 23:33:54 +00:00
.htk-calendar tr
{
2015-01-31 01:05:12 +00:00
height: 2em;
}
2015-03-06 23:33:54 +00:00
.htk-calendar tbody td
{
text-align: right;
2015-01-31 01:05:12 +00:00
padding-right: 0.5em;
}
2015-03-06 23:33:54 +00:00
.htk-calendar td.highlight,
.htk-calendar td:hover
{
cursor: pointer;
background-color: #DDE;
}
/* Full image */
2015-03-06 23:33:54 +00:00
.htk-full-image
{
2015-03-06 23:33:54 +00:00
z-index: 100;
position: fixed;
background-color: #FFF;
text-align: center;
border: 1px solid #999;
border-radius: 2px;
}
2015-03-06 23:33:54 +00:00
.htk-full-image-loader
{
2015-03-06 23:33:54 +00:00
z-index: 110;
position: fixed;
background-color: #FFF;
border: 1px solid #999;
2015-02-01 03:21:54 +00:00
border-radius: 0.1em;
}
2015-03-06 23:33:54 +00:00
.htk-full-image-loader img
{
2015-01-31 01:05:12 +00:00
padding: 1em;
}
2015-03-06 23:33:54 +00:00
/* Toast */
2015-03-06 23:33:54 +00:00
.htk-toast
{
2015-03-15 12:44:57 +00:00
z-index: 210;
2015-03-06 23:33:54 +00:00
display: block;
position: fixed;
background-color: white;
border-radius: 0.1em;
box-shadow: 0 0 0.4em #666;
padding: 0.5em;
left: 50%;
top: 4em;
2015-03-15 12:44:57 +00:00
width: 20em;
margin-left: -10.5em;
2015-03-06 23:33:54 +00:00
text-align: center;
}
2015-03-06 23:33:54 +00:00
.htk-toast.message
{
background-color: #BFB;
}
.htk-toast.warning
{
background-color: #FFB;
}
.htk-toast.error
{
background-color: #FBB;
}
/* Popup */
.htk-popup
{
z-index: 200;
display: block;
position: fixed;
background-color: white;
border-radius: 0.1em;
box-shadow: 0 0 0.4em #666;
}
/* Image editor */
2015-02-17 11:48:53 +00:00
.htk-image-editor
{
2015-02-17 11:48:53 +00:00
width: 20em;
margin: 0 auto;
}
2015-02-17 11:48:53 +00:00
.htk-image-editor h2
{
2015-02-17 11:48:53 +00:00
color: white;
background-color: #009688;
text-align: left;
font-size: 1.3em;
line-height: 1.7em;
font-weight: normal;
padding: 0.6em 0.8em;
margin: 0;
}
2015-02-17 11:48:53 +00:00
.htk-image-editor iframe
{
display: none;
}
2015-02-17 11:48:53 +00:00
.htk-image-editor form
{
2015-02-17 11:48:53 +00:00
padding: 1.5em;
}
2015-02-17 11:48:53 +00:00
.htk-image-editor .form-group
{
margin-bottom: 0.5em;
}
.htk-image-editor .form-group label
{
display: block;
margin-bottom: 0.3em;
}
.htk-image-editor .form-group input
{
width: 95%;
height: 1.8em;
}
.htk-image-editor .footer
{
margin-top: 1em;
text-align: center;
}
.htk-image-editor .footer img
{
visibility: hidden;
vertical-align: middle;
2015-01-31 01:05:12 +00:00
padding-right: 1em;
}
2015-02-17 11:48:53 +00:00
.htk-image-editor .footer input
{
display: inline;
margin-left: 0.5em;
margin-right: 0.5em;
}