obs-portal/frontend/src/App.module.scss

78 lines
1.1 KiB
SCSS
Raw Normal View History

2021-02-14 16:20:27 +00:00
@import 'styles.scss';
.App {
2021-02-17 20:50:18 +00:00
padding-top: 60px;
}
.header {
@include container;
height: 56px;
display: flex;
align-items: center;
}
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;
}
.pageTitle {
2021-05-07 16:10:15 +00:00
font-family: 'Open Sans Condensed';
font-weight: 600;
font-size: 18pt;
2021-05-07 16:10:15 +00:00
&, a, a:hover {
color: $obsColorB4;
}
}
.menu {
align-items: center;
justify-content: center;
color: white;
flex: 1 0 auto;
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;
}
}
}
}
}