130 lines
2.1 KiB
CSS
130 lines
2.1 KiB
CSS
.topMenu {
|
|
background-color: #8d3a7c;
|
|
color: #fff;
|
|
display: none;
|
|
font-size: 14px;
|
|
padding: 0;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.container {
|
|
box-sizing: content-box;
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
margin: 0 auto;
|
|
max-width: 1200px;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.homeLink {
|
|
display: none;
|
|
}
|
|
|
|
.list {
|
|
display: flex;
|
|
list-style: none;
|
|
line-height: 22.4px;
|
|
}
|
|
|
|
.link {
|
|
color: #fff;
|
|
display: inline-block;
|
|
padding: 3px 10px;
|
|
text-decoration: none;
|
|
font-family:
|
|
Helvetica Neue,
|
|
Helvetica,
|
|
Arial,
|
|
sans-serif;
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
.langSwitcher {
|
|
text-align: center;
|
|
position: relative;
|
|
display: block;
|
|
}
|
|
|
|
.skeletonWrapper {
|
|
padding: 4px 10px;
|
|
height: 30px;
|
|
align-content: center;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.container {
|
|
padding: 0 30px;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 950px) {
|
|
.topMenu {
|
|
background-color: #3d3835;
|
|
display: block;
|
|
}
|
|
.list {
|
|
align-items: center;
|
|
}
|
|
|
|
.link {
|
|
padding-top: 4px;
|
|
padding-bottom: 4px;
|
|
}
|
|
|
|
.loginContainer {
|
|
margin-left: 10px;
|
|
background-color: #f3f2f1;
|
|
}
|
|
|
|
.loginLink {
|
|
padding-left: 30px;
|
|
padding-right: 30px;
|
|
color: #000;
|
|
font-family:
|
|
Helvetica Neue,
|
|
Helvetica,
|
|
Arial,
|
|
sans-serif !important;
|
|
}
|
|
|
|
.sessionContainer {
|
|
margin-left: 10px;
|
|
background-color: #f3f2f1;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.loginSeparator {
|
|
height: 15px;
|
|
border-right: 1px solid #000;
|
|
}
|
|
|
|
.sessionLink {
|
|
padding: 4px 15px;
|
|
color: #000;
|
|
font-family:
|
|
Helvetica Neue,
|
|
Helvetica,
|
|
Arial,
|
|
sans-serif !important;
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
text-rendering: optimizeLegibility;
|
|
cursor: pointer;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.sessionLink.loginLink {
|
|
padding-left: 30px;
|
|
padding-right: 30px;
|
|
}
|
|
}
|