mirror of
https://github.com/matt-fidd/stratos.git
synced 2026-01-01 13:59:25 +00:00
53 lines
759 B
SCSS
53 lines
759 B
SCSS
.testPage {
|
|
&__testResultWrapper {
|
|
@include space-contents;
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
&__testResult {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
|
|
&__grade {
|
|
background: #ddd;
|
|
padding: 1rem;
|
|
border-radius: 10px;
|
|
font-weight: bold;
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
&__score {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
&__edit {
|
|
form {
|
|
padding-top: 1rem;
|
|
gap: .25rem;
|
|
|
|
input[type='submit'] {
|
|
padding: .2rem 0;
|
|
border: 1px solid $grey;
|
|
|
|
&.testResult__deleteButton {
|
|
position: relative;
|
|
top: -.5rem;
|
|
background: red;
|
|
}
|
|
}
|
|
|
|
@include respond-to('medium') {
|
|
width: 50%;
|
|
}
|
|
|
|
@include respond-to('large') {
|
|
width: 20%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|