1
0
Fork 0
mirror of https://github.com/Findus23/se-simulator.git synced 2024-09-19 15:53:45 +02:00
se-simulator/web/static/sass/style.scss

380 lines
6.2 KiB
SCSS

@import "variables";
@mixin mobile-only() {
@media (max-width: $mobile-break-point) {
@content ;
}
}
@mixin desktop-only() {
@media (min-width: $mobile-break-point) {
@content ;
}
}
@import "../../milligram/src/milligram";
@import "awesomplete.custom";
@import "pagination";
body {
font-size: 15px;
color: #111;
}
.container {
padding: 0 10px;
}
pre > code {
white-space: pre-wrap;
}
.content {
position: relative;
display: flex;
flex-direction: row;
padding: 15px 5px 15px;
&:not(.singlequestion) {
border-bottom: solid lightgray 1px;
}
&.question:not(.singlequestion) {
border-right: solid 10px lightgray;
}
.contentbox {
margin-left: 10px;
width: 100%;
.sitename {
color: grey;
&:hover {
text-decoration: underline;
}
}
.rightwrapper {
display: flex;
flex-direction: row;
justify-content: flex-end;
@include mobile-only {
justify-content: left;
}
.metadata {
font-size: 12px;
color: grey;
text-align: right;
}
}
.contentfooter {
display: flex;
justify-content: right;
margin: 0;
.authorbox {
background: #E1ECF9;
font-size: 12px;
padding: 5px;
color: #111;
}
}
}
.title {
font-size: 20px;
color: $link-color;
&:hover {
color: $link-hover-color;
}
}
.vote {
width: 30px;
display: flex;
flex-direction: column;
div {
text-align: center;
margin: 10px 0;
}
a {
font-size: 20px;
width: 0;
height: 0;
border-style: solid;
cursor: pointer;
transition: border-color .3s;
}
.up {
border-width: 0 15px 15px 15px;
border-color: transparent transparent #858c93 transparent;
&:hover, &:focus, &.active {
border-color: transparent transparent darken(#858c93, 20%) transparent;
}
}
.down {
border-width: 15px 15px 0 15px;
border-color: #858c93 transparent transparent transparent;
&:hover, &:focus, &.active {
border-color: darken(#858c93, 20%) transparent transparent transparent;
}
}
}
}
h1, h2 {
border-bottom: solid 1px lightgray;
padding-bottom: 10px;
margin-bottom: 0;
margin-top: 10px;
color: inherit;
}
h2 {
font-size: 18px
}
.siteheader {
background: $stackexchange-blue;
transition: background-color .3s, color .3s;
display: flex;
height: 50px;
align-items: center;
padding: 0 10px;
a {
color: inherit;
}
.gotolink {
margin-left: auto;
}
img {
background: rgba(255, 255, 255, 0.5);
padding: 5px;
border-radius: 50%;
margin-right: 10px;
}
}
#quizselector {
background-color: white;
margin: 15px;
display: flex;
flex-direction: row;
justify-content: center;
> .awesomplete {
margin-right: 5px;
width: 70%;
input {
font-size: 20px;
width: 100%;
}
}
}
#quizchoices {
margin: 15px;
display: flex;
flex-direction: row;
justify-content: space-between;
flex-wrap: wrap;
button.selection {
opacity: 1;
}
}
button {
background-color: lightgray;
color: #606c76;
border: none;
transition: opacity .3s;
&:hover, &:focus {
opacity: .6;
background-color: lightgray;
color: #606c76;
}
&:disabled {
&:hover, &:active, &:focus {
background-color: lightgray;
color: #606c76;
opacity: 0.5;
}
}
}
#next, #check {
background-color: #f69c55;
color: white;
}
#check {
height: 32px;
line-height: 32px;
}
#result {
> div {
width: 100%;
padding: 20px 0;
font-size: 25px;
text-align: center;
display: none;
}
}
#correct {
background-color: $success;
}
#incorrect {
background-color: $warning;
}
#stats {
display: flex;
flex-direction: row;
justify-content: space-around;
text-align: center;
padding: 20px 0;
}
footer {
padding: 1rem 2rem;
display: flex;
flex-direction: row;
justify-content: space-between;
a {
color: #111;
}
}
:target {
animation: target-fade 3s 1;
}
@keyframes target-fade {
0% {
background-color: rgba(0, 0, 0, .1);
}
100% {
background-color: rgba(0, 0, 0, 0);
}
}
#filterwrapper {
background-color: $stackexchange-blue;
display: flex;
justify-content: center;
input {
color: currentColor;
background: inherit;
border-radius: 0;
transition: all .3s;
padding: 10px;
&:hover, &:focus {
background-color: white;
color: #606c76;
border-color: lightgray;
}
}
.clear {
@extend input;
padding: 0 10px;
display: flex;
border: 0.1rem solid #d1d1d1;
border-left: none;
span {
align-self: center;
}
}
::placeholder {
color: #666
}
}
#quizteaster {
display: flex;
background-color: $stackexchange-blue;
a {
border: 1px lightgray;
border-top-style: solid;
&:first-child {
border-right-style: solid;
}
display: block;
flex-basis: 50%;
text-align: center;
color: inherit;
padding: 10px;
transition: all .3s;
&:hover, &:focus {
background-color: white;
color: #606c76;
}
}
}
html.quiz {
min-height: 100vh;
body {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.container {
}
}
.tutorial {
margin: 10px 0;
padding: 5px;
border: solid 1px lightgray;
border-right-width: 4px;
background-color: #ffffe0;
h3 {
font-size: 20px
}
p {
margin-bottom: 3px;
}
strong {
font-weight: 700;
}
a {
color: inherit;
font-weight: 700;
&:hover, &:focus, &:active {
text-decoration: underline;
}
}
}
#infowrapper {
position: fixed;
bottom: 20px;
right: auto;
left: auto;
width: 100%;
padding: 0 10px;
> div {
position: relative;
margin: 0 auto;
max-width: 130.0rem;
background: lightyellow;
padding: 25px;
box-shadow: 2px 2px 5px 0 rgba(50, 50, 50, 0.4);
p:last-of-type {
margin: 0;
}
.close {
position: absolute;
padding: 10px;
top: 0;
right: 0;
font-size: 20px;
cursor: pointer;
}
footer {
padding: 1rem 0 0;
}
}
}