2021-11-26 12:37:26 +00:00
|
|
|
@import 'styles.less';
|
2021-02-10 21:28:36 +00:00
|
|
|
|
2021-05-09 13:38:09 +00:00
|
|
|
:global(#root) {
|
2021-02-10 21:28:36 +00:00
|
|
|
display: flex;
|
2021-05-09 13:38:09 +00:00
|
|
|
flex-direction: column;
|
|
|
|
justify-content: stretch;
|
|
|
|
|
2021-12-06 07:47:47 +00:00
|
|
|
html,
|
|
|
|
body,
|
|
|
|
& {
|
2021-05-09 13:38:09 +00:00
|
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
margin-top: auto;
|
|
|
|
min-height: 12rem;
|
|
|
|
padding: 2rem 0;
|
|
|
|
|
2021-11-26 12:37:26 +00:00
|
|
|
background: @obsColorB4;
|
|
|
|
color: @obsColorW;
|
2021-05-09 13:38:09 +00:00
|
|
|
|
2021-12-06 07:47:47 +00:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
2021-05-09 13:38:09 +00:00
|
|
|
&:global(.ui.header) {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2021-12-06 07:47:47 +00:00
|
|
|
&,
|
|
|
|
&:hover {
|
2021-05-09 13:38:09 +00:00
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
2021-02-10 21:28:36 +00:00
|
|
|
}
|
|
|
|
|
2021-05-07 16:10:15 +00:00
|
|
|
.avatar {
|
|
|
|
width: 2.5em;
|
|
|
|
height: 2.5em;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: -0.6em;
|
|
|
|
border-radius: 100%;
|
|
|
|
|
|
|
|
> img {
|
|
|
|
border-radius: 100%;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-17 20:50:18 +00:00
|
|
|
.headline {
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
position: fixed;
|
|
|
|
// border-bottom: 1px solid #E0E0E4;
|
|
|
|
background: white;
|
|
|
|
z-index: 100;
|
|
|
|
box-shadow: 0 0 10px -6px black;
|
|
|
|
}
|
|
|
|
|
2021-05-09 13:38:09 +00:00
|
|
|
.pageTitle a {
|
2021-05-07 16:10:15 +00:00
|
|
|
font-family: 'Open Sans Condensed';
|
2021-02-10 21:28:36 +00:00
|
|
|
font-weight: 600;
|
|
|
|
font-size: 18pt;
|
2021-05-07 16:10:15 +00:00
|
|
|
|
2021-12-06 07:47:47 +00:00
|
|
|
&,
|
|
|
|
&:hover {
|
2021-11-26 12:37:26 +00:00
|
|
|
color: @obsColorB4;
|
2021-05-07 16:10:15 +00:00
|
|
|
}
|
2021-02-10 21:28:36 +00:00
|
|
|
}
|
|
|
|
|
2021-12-03 16:31:43 +00:00
|
|
|
.menu.menu {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
margin: 0;
|
|
|
|
|
2021-11-30 18:51:33 +00:00
|
|
|
> :global(.ui.container) {
|
|
|
|
height: @menuHeight;
|
|
|
|
align-items: stretch;
|
|
|
|
}
|
|
|
|
|
2021-02-10 21:28:36 +00:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
color: white;
|
2021-12-03 16:31:43 +00:00
|
|
|
border-radius: 0;
|
|
|
|
border-right: 0;
|
|
|
|
border-left: 0;
|
|
|
|
border-top: 0;
|
2021-02-10 21:28:36 +00:00
|
|
|
|
|
|
|
ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: baseline;
|
|
|
|
|
|
|
|
li {
|
|
|
|
padding: 1rem;
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: #877;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-12-03 16:31:43 +00:00
|
|
|
|
2023-03-26 17:09:29 +00:00
|
|
|
@media @mobile {
|
|
|
|
.menu.menu {
|
|
|
|
> :global(.ui.container) {
|
|
|
|
height: @menuHeightMobile;
|
|
|
|
align-items: stretch;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-03 16:31:43 +00:00
|
|
|
.banner {
|
|
|
|
padding: 8px;
|
|
|
|
z-index: 100;
|
2021-12-06 07:47:47 +00:00
|
|
|
border-bottom: 1px solid #ddd;
|
2021-12-03 16:31:43 +00:00
|
|
|
|
|
|
|
&.warning {
|
2021-12-06 07:47:47 +00:00
|
|
|
background: #ffd54f;
|
|
|
|
border-color: #fbc02d;
|
2021-12-03 16:31:43 +00:00
|
|
|
color: #263238;
|
|
|
|
}
|
|
|
|
&.info {
|
2021-12-06 07:47:47 +00:00
|
|
|
background: #4fc3f7;
|
|
|
|
border-color: #0d47a1;
|
|
|
|
color: #0d47a1;
|
2021-12-03 16:31:43 +00:00
|
|
|
}
|
|
|
|
}
|