2017-10-09 08:11:52 +11:00
|
|
|
/* Fonts from our style guide */
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Titillium Web';
|
|
|
|
src: url('../fonts/Titillium-Semibold.otf');
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face {
|
|
|
|
font-family: 'Roboto';
|
|
|
|
src: url('../fonts/Roboto-Regular.ttf');
|
|
|
|
}
|
|
|
|
|
|
|
|
.row { margin: 0px;}
|
|
|
|
|
|
|
|
/* for review */
|
|
|
|
#logo { padding: 16px 0px; }
|
|
|
|
|
|
|
|
body { font-family: 'Roboto', sans-serif; margin:0px; padding: 0px; width:100%; }
|
|
|
|
|
|
|
|
h1, h2 {
|
|
|
|
font-family: 'Titillium Web', sans-serif;
|
|
|
|
color: #3C3C3B; }
|
|
|
|
h3, h4 {
|
|
|
|
font-family: 'Titillium Web', sans-serif;
|
|
|
|
color: #4E87A0; }
|
|
|
|
|
|
|
|
img.profile-pic {
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
|
2017-05-07 13:40:36 +10:00
|
|
|
.label-required:after { content: ' *'; }
|
2017-05-07 13:18:42 +10:00
|
|
|
textarea, .monospace-text { font-family: Hack, monospace; }
|
2017-07-03 21:48:46 +10:00
|
|
|
.monospace-text { white-space: pre-wrap; }
|
2017-09-22 22:17:52 +10:00
|
|
|
|
|
|
|
/* MESSAGES & ERRORS */
|
|
|
|
|
|
|
|
ul.messagelist {
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.messagelist li {
|
|
|
|
display: block;
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 13px;
|
|
|
|
padding: 10px 10px 10px 65px;
|
|
|
|
margin: 0 0 10px 0;
|
|
|
|
background: #dfd url(../img/icon-yes.svg) 40px 12px no-repeat;
|
|
|
|
background-size: 16px auto;
|
|
|
|
color: #333;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.messagelist li.warning {
|
|
|
|
background: #ffc url(../img/icon-alert.svg) 40px 14px no-repeat;
|
|
|
|
background-size: 14px auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.messagelist li.error {
|
|
|
|
background: #ffefef url(../img/icon-no.svg) 40px 12px no-repeat;
|
|
|
|
background-size: 16px auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.errornote {
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 700;
|
|
|
|
display: block;
|
|
|
|
padding: 10px 12px;
|
|
|
|
margin: 0 0 10px 0;
|
|
|
|
color: #ba2121;
|
|
|
|
border: 1px solid #ba2121;
|
|
|
|
border-radius: 4px;
|
|
|
|
background-color: #fff;
|
|
|
|
background-position: 5px 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.errorlist {
|
|
|
|
margin: 0 0 4px;
|
|
|
|
padding: 0;
|
|
|
|
color: #ba2121;
|
|
|
|
background: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.errorlist li {
|
|
|
|
font-size: 13px;
|
|
|
|
display: block;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.errorlist li:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.errorlist li a {
|
|
|
|
color: inherit;
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
|
|
|
|
td ul.errorlist {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
td ul.errorlist li {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-row.errors {
|
|
|
|
margin: 0;
|
|
|
|
border: none;
|
|
|
|
border-bottom: 1px solid #eee;
|
|
|
|
background: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-row.errors ul.errorlist li {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.errors input, .errors select, .errors textarea {
|
|
|
|
border: 1px solid #ba2121;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.system-message {
|
|
|
|
background: #ffc;
|
|
|
|
margin: 10px;
|
|
|
|
padding: 6px 8px;
|
|
|
|
font-size: .8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.system-message p.system-message-title {
|
|
|
|
padding: 4px 5px 4px 25px;
|
|
|
|
margin: 0;
|
|
|
|
color: #c11;
|
|
|
|
background: #ffefef url(../img/icon-no.svg) 5px 5px no-repeat;
|
|
|
|
}
|
|
|
|
|
|
|
|
.description {
|
|
|
|
font-size: 12px;
|
|
|
|
padding: 5px 0 0 12px;
|
|
|
|
}
|
2017-09-30 13:24:14 +10:00
|
|
|
|
2017-10-08 22:23:13 +11:00
|
|
|
.bio {
|
|
|
|
font-family: Hack, monospace;
|
|
|
|
white-space: pre-wrap;
|
|
|
|
}
|
|
|
|
|
2017-09-30 13:24:14 +10:00
|
|
|
/**
|
|
|
|
* The CSS shown here will not be introduced in the Quickstart guide, but shows
|
|
|
|
* how you can use CSS to style your Element's container.
|
|
|
|
*/
|
|
|
|
.StripeElement {
|
|
|
|
background-color: white;
|
|
|
|
padding: 8px 12px;
|
|
|
|
border-radius: 4px;
|
|
|
|
border: 3px solid transparent;
|
|
|
|
box-shadow: 1px 3px 5px 1px #e6ebf1;
|
|
|
|
-webkit-transition: box-shadow 150ms ease;
|
|
|
|
transition: box-shadow 150ms ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
.StripeElement--focus {
|
|
|
|
box-shadow: 1px 3px 5px 1px #cfd7df;
|
|
|
|
}
|
|
|
|
|
|
|
|
.StripeElement--invalid {
|
|
|
|
border-color: #fa755a;
|
|
|
|
}
|
|
|
|
|
|
|
|
.StripeElement--webkit-autofill {
|
|
|
|
background-color: #fefde5 !important;
|
|
|
|
}
|
2017-10-09 08:11:52 +11:00
|
|
|
|
|
|
|
/* Navbar */
|
|
|
|
.navbar-nav > li > a, .navbar-brand {
|
|
|
|
padding-top:5px !important; padding-bottom:0 !important;
|
|
|
|
height: 40px;
|
|
|
|
|
|
|
|
}
|
|
|
|
.navbar {
|
|
|
|
min-height: 40px !important;
|
|
|
|
background-color: #ffffff;
|
|
|
|
border: #ffffff;
|
|
|
|
color: #000000;
|
|
|
|
width: fit-content;
|
|
|
|
margin-bottom: unset;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Standard nav menu styling */
|
|
|
|
.navbar-nav li a {
|
|
|
|
color: #575757 !important;
|
|
|
|
padding: 0px;
|
|
|
|
line-height: 32px;
|
|
|
|
font-family: 'Titillium Web', sans-serif;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-nav > li { width: 130px; text-align: center; }
|
|
|
|
|
|
|
|
.dropdown-menu {
|
|
|
|
padding: 0;
|
|
|
|
left: 130px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-menu > li {
|
|
|
|
min-width: unset;
|
|
|
|
text-align: left;
|
|
|
|
padding: 0 0 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.banner table, .banner thead, .banner tbody, .banner th, .banner td, .banner tr {
|
|
|
|
border: 0px !important;
|
|
|
|
}
|
|
|
|
|
2017-10-31 05:55:56 +00:00
|
|
|
.room {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
.speaker {
|
|
|
|
display: block;
|
|
|
|
}
|
2017-10-09 08:11:52 +11:00
|
|
|
|
|
|
|
/* 4 different navbar styles to alternate through */
|
|
|
|
.navbar-nav li:nth-child(4n+0) {background-color: #ECE81A;}
|
|
|
|
|
|
|
|
.navbar-nav li:nth-child(4n+1) { background-color: #DE7C00; }
|
|
|
|
|
|
|
|
.navbar-nav li:nth-child(4n+2) { background-color: #5BC2E7; }
|
|
|
|
|
|
|
|
.navbar-nav li:nth-child(4n+3) { background-color: #4E87A0; }
|
|
|
|
|
|
|
|
/* nav menu highligh */
|
|
|
|
.navbar-nav li:hover { background-color: #005760; }
|
|
|
|
.navbar-nav > li:hover > a { color: #e9e9e9 !important;}
|
|
|
|
.navbar-nav > li > a:hover { background-color: transparent !important; }
|
|
|
|
.navbar-nav .dropdown-menu li:hover > a { background-color: #005760 !important; color: #e9e9e9 !important; }
|
|
|
|
|
|
|
|
.navbar-nav .open > a, .navbar-nav .open > a:hover, .navbar-nav .open > a:focus {
|
|
|
|
background-color: transparent !important;
|
|
|
|
color: #e9e9e9 !important;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (max-width: 760px) {
|
|
|
|
.navbar-nav { margin: 0px -15px; }
|
|
|
|
.navbar-nav > li { width: 120px !important; }
|
|
|
|
.dropdown-menu { left: 20px; top: 30px; }
|
2017-10-31 05:55:56 +00:00
|
|
|
.room { display: block; }
|
2017-10-09 08:11:52 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
@media all and (min-width: 760px) {
|
|
|
|
.navbar-nav > li {
|
|
|
|
-webkit-transform: skew(-45deg);
|
|
|
|
-moz-transform: skew(-45deg);
|
|
|
|
transform: skew(-45deg);
|
|
|
|
}
|
|
|
|
.navbar-nav > li > * {
|
|
|
|
-webkit-transform: skew(45deg);
|
|
|
|
-moz-transform: skew(45deg);
|
|
|
|
transform: skew(45deg);
|
|
|
|
}
|
|
|
|
}
|
2017-10-31 05:55:56 +00:00
|
|
|
@media only screen and (max-width: 760px) {
|
2017-10-09 08:11:52 +11:00
|
|
|
/* Force table to not be like tables anymore */
|
2017-10-31 05:55:56 +00:00
|
|
|
table {
|
2017-10-09 08:11:52 +11:00
|
|
|
display: table-row;
|
|
|
|
}
|
2017-11-12 15:10:46 +11:00
|
|
|
thead {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
tbody, th, td, tr {
|
2017-10-09 08:11:52 +11:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2017-10-31 05:55:56 +00:00
|
|
|
td {
|
2017-10-09 08:11:52 +11:00
|
|
|
/* Behave like a "row" */
|
|
|
|
border: none;
|
|
|
|
position: relative;yes
|
|
|
|
padding-left: 50%;
|
|
|
|
}
|
|
|
|
|
2017-10-31 05:55:56 +00:00
|
|
|
td:before {
|
2017-10-09 08:11:52 +11:00
|
|
|
/* Now like a table header */
|
|
|
|
position: absolute;
|
|
|
|
/* Top/left values mimic padding */
|
|
|
|
top: 6px;
|
|
|
|
left: 6px;
|
|
|
|
width: 45%;
|
|
|
|
padding-right: 10px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-nav {
|
|
|
|
padding-left: 20px;
|
|
|
|
}
|
|
|
|
}
|