|
|
@@ -7,11 +7,6 @@ a {
|
|
|
text-decoration: none;
|
|
|
}
|
|
|
|
|
|
-p {
|
|
|
- padding: 5px;
|
|
|
- margin: 0 0 10px;
|
|
|
-}
|
|
|
-
|
|
|
.ui-datepicker {
|
|
|
z-index: 9998 !important;
|
|
|
}
|
|
|
@@ -24,7 +19,7 @@ p {
|
|
|
body {
|
|
|
max-width: 1170px;
|
|
|
margin: auto;
|
|
|
- font-family: Liberation Sans, Arial;
|
|
|
+ font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
|
|
|
font-size: 14px;
|
|
|
}
|
|
|
|
|
|
@@ -144,7 +139,7 @@ ul.dropdown-left {
|
|
|
flex-direction: row;
|
|
|
flex-wrap: wrap;
|
|
|
list-style: none;
|
|
|
- background-color: #3259d7;
|
|
|
+ background-color: #097f9a;
|
|
|
padding: 0;
|
|
|
align-items: center;
|
|
|
margin: 0 0 1em;
|
|
|
@@ -156,7 +151,7 @@ ul.dropdown-left {
|
|
|
content: "";
|
|
|
/* empty but necessary */
|
|
|
position: absolute;
|
|
|
- background-color: #3259d7;
|
|
|
+ background-color: #097f9a;
|
|
|
height: 100%;
|
|
|
left: -50vw;
|
|
|
width: 200vw;
|
|
|
@@ -168,7 +163,7 @@ ul.dropdown-left {
|
|
|
}
|
|
|
|
|
|
#menu li.active {
|
|
|
- background-color: #3259d7;
|
|
|
+ background-color: #097f9a;
|
|
|
}
|
|
|
|
|
|
#menu li a {
|
|
|
@@ -201,7 +196,7 @@ ul.dropdown-left {
|
|
|
}
|
|
|
|
|
|
#menu .dropdown.dropdown-displayed {
|
|
|
- background-color: #3259d7;
|
|
|
+ background-color: #097f9a;
|
|
|
color: #555;
|
|
|
}
|
|
|
|
|
|
@@ -226,7 +221,7 @@ ul.dropdown-left {
|
|
|
}
|
|
|
|
|
|
#menu .dropdown-menu li.active {
|
|
|
- background-color: #3259d7;
|
|
|
+ background-color: #097f9a;
|
|
|
}
|
|
|
|
|
|
#menu .dropdown-menu li.active > a {
|
|
|
@@ -252,49 +247,101 @@ ul.dropdown-left {
|
|
|
flex: 1;
|
|
|
padding: 0 2em;
|
|
|
min-width: 600px;
|
|
|
+ line-height: 1.4em;
|
|
|
}
|
|
|
-
|
|
|
-.content h1, h2, h3, h4, h5, h6 {
|
|
|
+.content h1, .content h2, .content h3, .content h4, .content h5, .content h6 {
|
|
|
font-weight: 500;
|
|
|
- line-height: 1.1;
|
|
|
}
|
|
|
-
|
|
|
-.content h1, h2 {
|
|
|
+.content h1, .content h2 {
|
|
|
padding: 5px;
|
|
|
}
|
|
|
-
|
|
|
.content h1 {
|
|
|
- color: #3259d7;
|
|
|
+ color: #097f9a;
|
|
|
font-size: 1.6em;
|
|
|
font-weight: 500;
|
|
|
}
|
|
|
-
|
|
|
.content h2 {
|
|
|
- color: #3259d7;
|
|
|
- font-size: 1.6em;
|
|
|
+ color: #333333;
|
|
|
+ font-size: 1.4em;
|
|
|
font-weight: 500;
|
|
|
}
|
|
|
-
|
|
|
.content h3 {
|
|
|
- color: #3259d7;
|
|
|
+ color: #333333;
|
|
|
font-size: 1.2em;
|
|
|
font-weight: 500;
|
|
|
}
|
|
|
-
|
|
|
.content h4 {
|
|
|
- color: #3259d7;
|
|
|
+ color: #333333;
|
|
|
font-size: 1.2em;
|
|
|
font-weight: 500;
|
|
|
}
|
|
|
-
|
|
|
.content h5 {
|
|
|
- color: #3259d7;
|
|
|
+ color: #333333;
|
|
|
font-size: 1em;
|
|
|
font-weight: 500;
|
|
|
}
|
|
|
-
|
|
|
.content a {
|
|
|
- color: #3259d7;
|
|
|
+ color: #097f9a;
|
|
|
+}
|
|
|
+.content a:hover {
|
|
|
+ color: #03303a;
|
|
|
+ text-decoration: underline;
|
|
|
+}
|
|
|
+.content p {
|
|
|
+ padding: 5px;
|
|
|
+ margin: 0 0 10px;
|
|
|
+}
|
|
|
+.content .text-center {
|
|
|
+ text-align: center;
|
|
|
+}
|
|
|
+.content .text-justify {
|
|
|
+ text-align: justify;
|
|
|
+}
|
|
|
+.content .text-right {
|
|
|
+ text-align: right;
|
|
|
+}
|
|
|
+.content blockquote {
|
|
|
+ padding-left: 20px;
|
|
|
+ padding-right: 8px;
|
|
|
+ border-width: 0 0 0 5px;
|
|
|
+ border-style: solid;
|
|
|
+ border-color: #097f9a;
|
|
|
+ font-style: italic;
|
|
|
+}
|
|
|
+.content table {
|
|
|
+ border-collapse: collapse;
|
|
|
+}
|
|
|
+.content table caption {
|
|
|
+ padding-top: 8px;
|
|
|
+ padding-bottom: 8px;
|
|
|
+ color: #777;
|
|
|
+ text-align: left;
|
|
|
+}
|
|
|
+.content table td, .content table th {
|
|
|
+ border: 1px solid #ddd;
|
|
|
+ padding: 8px;
|
|
|
+}
|
|
|
+.content table tr:nth-child(even) {
|
|
|
+ background-color: #f2f2f2;
|
|
|
+}
|
|
|
+.content table th {
|
|
|
+ padding-top: 12px;
|
|
|
+ padding-bottom: 12px;
|
|
|
+ text-align: left;
|
|
|
+ background-color: #097f9a;
|
|
|
+ color: white;
|
|
|
+}
|
|
|
+.content pre {
|
|
|
+ display: block;
|
|
|
+ padding: 9.5px;
|
|
|
+ margin: 0 0 10px;
|
|
|
+ font-size: 13px;
|
|
|
+ border: 1px solid #ccc;
|
|
|
+ border-radius: 4px;
|
|
|
+ background-color: #f5f5f5;
|
|
|
+ word-break: break-all;
|
|
|
+ word-wrap: break-word;
|
|
|
+ color: #333333;
|
|
|
}
|
|
|
|
|
|
#footer {
|
|
|
@@ -394,7 +441,7 @@ footer .logo-ot {
|
|
|
}
|
|
|
|
|
|
.user-toolbar .dropside-menu {
|
|
|
- background-color: #3259d7;
|
|
|
+ background-color: #097f9a;
|
|
|
box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
|
|
|
}
|
|
|
|
|
|
@@ -408,7 +455,7 @@ footer .logo-ot {
|
|
|
#login-popup .popup-form {
|
|
|
visibility: hidden;
|
|
|
width: 240px;
|
|
|
- background-color: #3259d7;
|
|
|
+ background-color: #097f9a;
|
|
|
border-radius: 4px;
|
|
|
padding: 1em 1.6em;
|
|
|
position: absolute;
|
|
|
@@ -446,7 +493,7 @@ footer .logo-ot {
|
|
|
}
|
|
|
|
|
|
.breadcrumb a {
|
|
|
- color: #3259d7;
|
|
|
+ color: #097f9a;
|
|
|
}
|
|
|
|
|
|
.breadcrumb li {
|
|
|
@@ -501,7 +548,7 @@ footer .logo-ot {
|
|
|
}
|
|
|
|
|
|
.ot-box header h3 {
|
|
|
- color: #3259d7;
|
|
|
+ color: #097f9a;
|
|
|
font-size: 1.2em;
|
|
|
font-weight: bold;
|
|
|
padding: 0;
|
|
|
@@ -509,7 +556,7 @@ footer .logo-ot {
|
|
|
}
|
|
|
|
|
|
.ot-box a {
|
|
|
- color: #3259d7;
|
|
|
+ color: #097f9a;
|
|
|
}
|
|
|
|
|
|
.ot-box footer:not(:empty) {
|
|
|
@@ -610,8 +657,8 @@ footer .logo-ot {
|
|
|
}
|
|
|
|
|
|
.ot-all-events .event-search form button {
|
|
|
- border: solid 2px #3259d7;
|
|
|
- color: #3259d7;
|
|
|
+ border: solid 2px #097f9a;
|
|
|
+ color: #097f9a;
|
|
|
}
|
|
|
|
|
|
.ot-all-events .event-search form button:hover {
|
|
|
@@ -718,10 +765,10 @@ footer .logo-ot {
|
|
|
}
|
|
|
|
|
|
.ot-show-event .go-back {
|
|
|
- color: #3259d7;
|
|
|
+ color: #097f9a;
|
|
|
font-weight: bold;
|
|
|
padding: 0.5em 0.7em;
|
|
|
- border: solid 2px #3259d7;
|
|
|
+ border: solid 2px #097f9a;
|
|
|
border-radius: 6px;
|
|
|
margin: auto;
|
|
|
}
|
|
|
@@ -886,7 +933,7 @@ textarea.form-control {
|
|
|
}
|
|
|
|
|
|
.form-control:focus {
|
|
|
- border: 2px solid #3259d7;
|
|
|
+ border: 2px solid #097f9a;
|
|
|
}
|
|
|
|
|
|
.form-control:invalid {
|
|
|
@@ -953,7 +1000,7 @@ form button[type=submit]:hover {
|
|
|
color: #262626;
|
|
|
padding: 0 2em;
|
|
|
margin: 0 0.5em 3em 0.5em;
|
|
|
- border-left: solid 2px #3259d7;
|
|
|
+ border-left: solid 2px #097f9a;
|
|
|
}
|
|
|
|
|
|
.fce-2col {
|