2015-09-11 09:37:16 +00:00
|
|
|
|
2016-07-22 20:00:27 +00:00
|
|
|
@font-face
|
|
|
|
{
|
|
|
|
font-family: 'Roboto';
|
|
|
|
src: url('roboto.ttf') format('truetype');
|
|
|
|
}
|
|
|
|
|
2015-09-11 09:37:16 +00:00
|
|
|
/* Responsive */
|
|
|
|
|
2015-12-19 15:42:38 +00:00
|
|
|
/* Standard */
|
2015-09-11 09:37:16 +00:00
|
|
|
@media screen
|
|
|
|
{
|
2016-01-10 13:10:51 +00:00
|
|
|
body { font-size: 10pt; }
|
2015-12-10 23:24:14 +00:00
|
|
|
}
|
2015-12-19 15:42:38 +00:00
|
|
|
|
|
|
|
/* Desktop - Laptop 1360x768 */
|
2016-01-07 12:58:29 +00:00
|
|
|
@media (max-resolution: 119dpi) and (min-device-width: 1340px) and (max-device-width: 1899px)
|
2015-12-15 15:22:46 +00:00
|
|
|
{
|
2016-01-10 13:10:51 +00:00
|
|
|
body { font-size: 10pt; }
|
2015-12-15 15:22:46 +00:00
|
|
|
}
|
2015-12-19 15:42:38 +00:00
|
|
|
|
|
|
|
/* Desktop - FHD 1920x1080 */
|
2015-12-15 15:22:46 +00:00
|
|
|
@media (max-resolution: 119dpi) and (min-device-width: 1900px)
|
2015-12-10 23:24:14 +00:00
|
|
|
{
|
|
|
|
body { font-size: 13pt; }
|
2015-09-11 09:37:16 +00:00
|
|
|
}
|
2015-12-19 15:42:38 +00:00
|
|
|
|
2016-01-07 12:58:29 +00:00
|
|
|
/* Mobile - Low DPI */
|
|
|
|
@media
|
|
|
|
(min-resolution: 120dpi),
|
|
|
|
(-webkit-min-device-pixel-ratio: 1.5)
|
|
|
|
{
|
|
|
|
body { font-size: 9pt; }
|
|
|
|
}
|
2015-12-19 15:42:38 +00:00
|
|
|
@media
|
2016-01-07 12:58:29 +00:00
|
|
|
(min-resolution: 144dpi),
|
|
|
|
(-webkit-min-device-pixel-ratio: 1.5)
|
2015-09-11 09:37:16 +00:00
|
|
|
{
|
2015-12-10 13:48:43 +00:00
|
|
|
body { font-size: 11pt; }
|
2015-09-11 09:37:16 +00:00
|
|
|
}
|
2015-12-19 15:42:38 +00:00
|
|
|
|
2016-01-07 12:58:29 +00:00
|
|
|
/* Mobile - Normal DPI */
|
|
|
|
@media
|
|
|
|
(max-device-width: 383px) and (min-resolution: 192dpi),
|
|
|
|
(max-device-width: 383px) and (-webkit-min-device-pixel-ratio: 2)
|
|
|
|
{
|
|
|
|
body { font-size: 10pt; }
|
|
|
|
}
|
|
|
|
@media
|
|
|
|
(min-device-width: 384px) and (min-resolution: 192dpi),
|
|
|
|
(min-device-width: 384px) and (-webkit-min-device-pixel-ratio: 2)
|
|
|
|
{
|
|
|
|
body { font-size: 11pt; }
|
|
|
|
}
|
2015-12-19 15:42:38 +00:00
|
|
|
|
2016-01-07 12:58:29 +00:00
|
|
|
/* Mobile - High DPI */
|
2015-12-19 15:42:38 +00:00
|
|
|
@media
|
2016-01-07 12:58:29 +00:00
|
|
|
(max-device-width: 411px) and (min-resolution: 249dpi),
|
|
|
|
(max-device-width: 411px) and (-webkit-min-device-pixel-ratio: 3)
|
2015-09-11 09:37:16 +00:00
|
|
|
{
|
2016-01-07 12:58:29 +00:00
|
|
|
body { font-size: 10pt; }
|
|
|
|
}
|
|
|
|
@media
|
|
|
|
(min-device-width: 412px) and (min-resolution: 249dpi),
|
|
|
|
(min-device-width: 412px) and (-webkit-min-device-pixel-ratio: 3)
|
|
|
|
{
|
|
|
|
body { font-size: 11pt; }
|
2015-09-11 09:37:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Global */
|
|
|
|
|
|
|
|
body
|
|
|
|
{
|
2016-01-15 12:31:08 +00:00
|
|
|
font-family: 'Roboto', 'Verdana', 'Sans';
|
2016-10-04 15:27:49 +00:00
|
|
|
background-color: #EEE;
|
|
|
|
color: #333;
|
|
|
|
position: absolute;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2015-12-15 15:22:46 +00:00
|
|
|
margin: 0;
|
2016-10-04 15:27:49 +00:00
|
|
|
overflow: auto;
|
|
|
|
z-index: -2;
|
2015-09-11 09:37:16 +00:00
|
|
|
}
|
|
|
|
label,
|
|
|
|
button,
|
|
|
|
input,
|
2015-09-28 09:46:24 +00:00
|
|
|
select,
|
2015-12-10 13:48:43 +00:00
|
|
|
textarea,
|
2015-09-28 09:46:24 +00:00
|
|
|
option
|
2015-09-11 09:37:16 +00:00
|
|
|
{
|
2015-12-10 13:48:43 +00:00
|
|
|
font-size: inherit;
|
|
|
|
font-family: inherit;
|
2015-12-15 15:22:46 +00:00
|
|
|
color: inherit;
|
2015-09-11 09:37:16 +00:00
|
|
|
}
|
|
|
|
iframe
|
|
|
|
{
|
2015-12-10 13:48:43 +00:00
|
|
|
border: none;
|
2015-09-11 09:37:16 +00:00
|
|
|
}
|
2015-12-15 15:22:46 +00:00
|
|
|
fieldset
|
2015-09-11 09:37:16 +00:00
|
|
|
{
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
form
|
|
|
|
{
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
table
|
|
|
|
{
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
a:link,
|
|
|
|
a:visited,
|
|
|
|
a:active
|
|
|
|
{
|
2015-12-15 15:22:46 +00:00
|
|
|
color: inherit;
|
2015-09-11 09:37:16 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
a:hover
|
|
|
|
{
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
a img
|
|
|
|
{
|
|
|
|
padding: 1px;
|
|
|
|
}
|
2015-12-15 15:22:46 +00:00
|
|
|
a img:hover
|
|
|
|
{
|
|
|
|
opacity: 0.9;
|
|
|
|
}
|
2015-09-11 09:37:16 +00:00
|
|
|
h1, h2, h3, h4, h5, h6
|
|
|
|
{
|
|
|
|
margin: 0;
|
2016-01-07 12:58:29 +00:00
|
|
|
padding: .2em 0;
|
2015-09-11 09:37:16 +00:00
|
|
|
}
|
|
|
|
h1
|
|
|
|
{
|
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
h2
|
|
|
|
{
|
2016-01-07 12:58:29 +00:00
|
|
|
font-size: 1.2em;
|
2015-09-11 09:37:16 +00:00
|
|
|
}
|
|
|
|
p
|
|
|
|
{
|
|
|
|
margin: 0.8em 0;
|
|
|
|
}
|
|
|
|
|
2015-12-02 17:26:58 +00:00
|
|
|
/* Focus outline */
|
|
|
|
|
2015-12-15 15:22:46 +00:00
|
|
|
a:focus,
|
|
|
|
input:focus,
|
|
|
|
button:focus
|
2015-12-02 17:26:58 +00:00
|
|
|
{
|
|
|
|
outline: 1px solid rgba(1, 1, 1, 0.15);
|
|
|
|
-moz-outline-radius: .1em;
|
|
|
|
}
|
2015-12-10 13:48:43 +00:00
|
|
|
button::-moz-focus-inner,
|
|
|
|
input[type=submit]::-moz-focus-inner,
|
|
|
|
input[type=button]::-moz-focus-inner,
|
|
|
|
input[type=reset]::-moz-focus-inner
|
2015-12-02 17:26:58 +00:00
|
|
|
{
|
|
|
|
border: none;
|
|
|
|
}
|
2015-12-10 13:48:43 +00:00
|
|
|
select:-moz-focusring
|
2015-12-02 17:26:58 +00:00
|
|
|
{
|
2015-12-10 13:48:43 +00:00
|
|
|
/* color: transparent;
|
|
|
|
text-shadow: 0 0 0 #333;*/
|
2015-12-02 17:26:58 +00:00
|
|
|
}
|
|
|
|
|
2015-09-11 09:37:16 +00:00
|
|
|
/* Inputs */
|
|
|
|
|
|
|
|
input[type=text],
|
|
|
|
input[type=password],
|
|
|
|
input[type=file],
|
|
|
|
input[type=number],
|
|
|
|
textarea,
|
2015-10-23 23:23:19 +00:00
|
|
|
select,
|
|
|
|
.input
|
2015-09-11 09:37:16 +00:00
|
|
|
{
|
2015-09-28 09:46:24 +00:00
|
|
|
border: none;
|
|
|
|
border-bottom: 1px solid #999;
|
2015-12-15 15:22:46 +00:00
|
|
|
margin: .2em 0;
|
2015-09-28 09:46:24 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
color: #333;
|
2015-12-15 15:22:46 +00:00
|
|
|
border-radius: 0;
|
|
|
|
text-align: left;
|
|
|
|
width: 100%;
|
2015-09-11 09:37:16 +00:00
|
|
|
}
|
|
|
|
input[type=text],
|
|
|
|
input[type=password],
|
|
|
|
input[type=number],
|
2015-12-15 15:22:46 +00:00
|
|
|
textarea,
|
|
|
|
.input
|
2015-09-11 09:37:16 +00:00
|
|
|
{
|
2015-09-28 09:46:24 +00:00
|
|
|
padding: 0 .2em;
|
2015-09-11 09:37:16 +00:00
|
|
|
}
|
|
|
|
input[type=text],
|
2015-09-28 09:46:24 +00:00
|
|
|
input[type=password],
|
|
|
|
input[type=file],
|
|
|
|
input[type=number],
|
2015-12-15 15:22:46 +00:00
|
|
|
select,
|
|
|
|
.input
|
2015-09-11 09:37:16 +00:00
|
|
|
{
|
2015-09-28 09:46:24 +00:00
|
|
|
height: 2.2em;
|
2015-09-11 09:37:16 +00:00
|
|
|
}
|
|
|
|
textarea
|
|
|
|
{
|
|
|
|
height: 3.5em;
|
|
|
|
width: 20em;
|
|
|
|
}
|
|
|
|
input[type=text]:focus,
|
|
|
|
input[type=password]:focus,
|
2015-09-28 09:46:24 +00:00
|
|
|
input[type=file]:focus,
|
|
|
|
input[type=number]:focus,
|
2015-12-15 15:22:46 +00:00
|
|
|
textarea:focus,
|
|
|
|
.input:focus
|
2015-09-11 09:37:16 +00:00
|
|
|
{
|
2015-09-28 09:46:24 +00:00
|
|
|
border-color: #333;
|
2015-09-11 09:37:16 +00:00
|
|
|
}
|
|
|
|
input[type=checkbox],
|
|
|
|
input[type=radio]
|
|
|
|
{
|
|
|
|
cursor: pointer;
|
2018-01-19 14:59:44 +00:00
|
|
|
margin: .2em;
|
|
|
|
padding: .3em;
|
2015-09-11 09:37:16 +00:00
|
|
|
}
|
2015-09-28 09:46:24 +00:00
|
|
|
select
|
|
|
|
{
|
|
|
|
background-color: white;
|
|
|
|
-moz-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
}
|
|
|
|
option
|
|
|
|
{
|
|
|
|
padding: .4em;
|
|
|
|
border-width: 0;
|
|
|
|
font-weight: normal;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
select,
|
|
|
|
option
|
|
|
|
{
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2015-09-11 09:37:16 +00:00
|
|
|
|
|
|
|
/* Buttons */
|
|
|
|
|
|
|
|
button,
|
|
|
|
input[type=submit],
|
2015-12-10 13:48:43 +00:00
|
|
|
input[type=button],
|
|
|
|
input[type=reset]
|
2015-09-11 09:37:16 +00:00
|
|
|
{
|
|
|
|
border: none;
|
|
|
|
background-color: transparent;
|
2018-01-19 14:59:44 +00:00
|
|
|
padding: .5em;
|
2015-09-11 09:37:16 +00:00
|
|
|
cursor: pointer;
|
|
|
|
border-radius: 0.1em;
|
2016-01-15 12:31:08 +00:00
|
|
|
margin: -0.5em;
|
2015-09-11 09:37:16 +00:00
|
|
|
}
|
|
|
|
button:hover,
|
|
|
|
input[type=submit]:hover,
|
2015-12-10 13:48:43 +00:00
|
|
|
input[type=button]:hover,
|
|
|
|
input[type=reset]:hover
|
2015-09-11 09:37:16 +00:00
|
|
|
{
|
|
|
|
background-color: rgba(1, 1, 1, 0.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Flat button */
|
|
|
|
|
|
|
|
button.flat,
|
|
|
|
input.button
|
|
|
|
{
|
|
|
|
border: none;
|
|
|
|
border-radius: 0.1em;
|
|
|
|
box-shadow: 0 0.2em 0.2em #DDD;
|
|
|
|
background-color: #AD4;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
button.flat:hover,
|
|
|
|
input.button:hover
|
|
|
|
{
|
|
|
|
background-color: #9C3;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
button.flat:disabled,
|
|
|
|
input.button:disabled
|
|
|
|
{
|
|
|
|
color: gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Thin button */
|
|
|
|
|
2016-05-02 13:05:49 +00:00
|
|
|
input[type=submit].thin,
|
|
|
|
input[type=button].thin,
|
|
|
|
input[type=reset].thin,
|
2015-09-11 09:37:16 +00:00
|
|
|
button.thin
|
|
|
|
{
|
|
|
|
color: #008D77;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
2016-05-02 13:05:49 +00:00
|
|
|
input[type=submit].thin:disabled,
|
|
|
|
input[type=button].thin:disabled,
|
|
|
|
input[type=reset].thin:disabled,
|
2015-09-11 09:37:16 +00:00
|
|
|
button.thin:disabled
|
|
|
|
{
|
|
|
|
color: gray;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Image */
|
|
|
|
|
|
|
|
img.editable
|
|
|
|
{
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Button */
|
|
|
|
|
|
|
|
.htk-button img
|
|
|
|
{
|
|
|
|
height: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Float */
|
|
|
|
|
|
|
|
.clear
|
|
|
|
{
|
2016-05-02 13:05:49 +00:00
|
|
|
clear: both !important;
|
2015-09-11 09:37:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Box */
|
|
|
|
|
|
|
|
.box
|
|
|
|
{
|
|
|
|
background-color: white;
|
|
|
|
margin: 0 auto;
|
|
|
|
border-radius: 0.1em;
|
|
|
|
box-shadow: 0 0.2em 0.2em #CCC;
|
|
|
|
}
|
|
|
|
.box .header
|
|
|
|
{
|
|
|
|
padding: 0.6em 0.8em;
|
|
|
|
margin: 0;
|
|
|
|
background-color: #009688;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
.box .header > h1
|
|
|
|
{
|
|
|
|
color: white;
|
|
|
|
text-align: left;
|
|
|
|
font-size: 1.6em;
|
|
|
|
line-height: 2em;
|
|
|
|
font-weight: normal;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
.box .body
|
|
|
|
{
|
|
|
|
padding: 2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Form */
|
|
|
|
|
|
|
|
.form
|
|
|
|
{
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
.form-group
|
|
|
|
{
|
2016-05-02 13:05:49 +00:00
|
|
|
margin-bottom: 1.2em;
|
|
|
|
}
|
|
|
|
.form-group:last-child
|
|
|
|
{
|
|
|
|
margin-bottom: 0;
|
2015-09-11 09:37:16 +00:00
|
|
|
}
|
|
|
|
.form-group > label
|
|
|
|
{
|
|
|
|
display: block;
|
2015-09-28 09:46:24 +00:00
|
|
|
margin: 0;
|
|
|
|
margin-bottom: .2em;
|
|
|
|
font-size: .9em;
|
|
|
|
color: #222;
|
2015-09-11 09:37:16 +00:00
|
|
|
}
|
|
|
|
.form-group > input[type=text],
|
|
|
|
.form-group > input[type=password],
|
2015-09-28 09:46:24 +00:00
|
|
|
.form-group > input[type=file],
|
|
|
|
.form-group > input[type=number],
|
2015-09-11 09:37:16 +00:00
|
|
|
.form-group > select,
|
|
|
|
.form-group > textarea
|
|
|
|
{
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Masonry */
|
|
|
|
|
|
|
|
.masonry
|
|
|
|
{
|
|
|
|
margin: 0 auto;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.masonry-box
|
|
|
|
{
|
|
|
|
width: 100%;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
@media screen and (min-width: 1000px) and (max-width: 1399px)
|
|
|
|
{
|
|
|
|
.masonry-box
|
|
|
|
{
|
|
|
|
width: 50%;
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
clear: left;
|
|
|
|
}
|
|
|
|
.masonry-box:nth-child(2n+0)
|
|
|
|
{
|
|
|
|
float: right;
|
|
|
|
clear: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media screen and (min-width: 1400px)
|
|
|
|
{
|
|
|
|
.masonry-box { width: 33.3%; }
|
|
|
|
}
|
|
|
|
@media screen and (min-width: 2000px)
|
|
|
|
{
|
|
|
|
.masonry-box { width: 25%; }
|
|
|
|
}
|
|
|
|
|
2016-10-13 15:07:48 +00:00
|
|
|
/* Social bar */
|
|
|
|
|
|
|
|
.htk-social-bar
|
|
|
|
{
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.htk-social-bar a
|
|
|
|
{
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 .1em;
|
|
|
|
}
|
|
|
|
.htk-social-bar img
|
|
|
|
{
|
|
|
|
height: 1.8em;
|
|
|
|
width: 1.8em;
|
|
|
|
}
|
2016-01-15 12:31:08 +00:00
|
|
|
|