94 lines
1.4 KiB
SCSS
94 lines
1.4 KiB
SCSS
@import 'variables';
|
|
|
|
body {
|
|
font-family: "Avenir Next", sans-serif;
|
|
margin: 0;
|
|
}
|
|
|
|
header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
border-top: 20px solid $medium-blue;
|
|
border-bottom: 2px solid $light-border-color;
|
|
padding: 20px;
|
|
|
|
.group {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
|
|
h1 {
|
|
width: 100%;
|
|
padding-right: 25px;
|
|
}
|
|
|
|
.back {
|
|
padding: 5px 10px;
|
|
font-size: 16px;
|
|
font-weight: 500;
|
|
letter-spacing: 1px;
|
|
}
|
|
}
|
|
|
|
img {
|
|
width: 200px;
|
|
height: 25px;
|
|
}
|
|
}
|
|
|
|
h1 {
|
|
margin: 0;
|
|
font-size: 25px;
|
|
font-weight: $semi-bold;
|
|
}
|
|
|
|
.content {
|
|
width: 900px;
|
|
margin: 40px auto;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
.clickable {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.spacer {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.spinner-panel {
|
|
position: fixed;
|
|
margin: 0 auto;
|
|
top: 0;
|
|
left: 0;
|
|
width: 0; /* It will be updated to 100% in JS. Workaround for Safari issue with display:none; */
|
|
height: 100%;
|
|
background-color: rgba(0, 0, 0, 0.8);
|
|
z-index: 1;
|
|
|
|
display: flex;
|
|
flex-flow: column nowrap;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
font-size: 24px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
|
|
.msg-container {
|
|
background-color: $off-white;
|
|
border: 1px solid $medium-border-color;
|
|
margin: 20px;
|
|
padding: 10px;
|
|
padding-left: 30px;
|
|
}
|
|
.msg-container li {
|
|
padding-left: 0 !important;
|
|
}
|