diff --git a/src/stylesheets/main.scss b/src/stylesheets/main.scss index 96fe9e5..08c22a7 100644 --- a/src/stylesheets/main.scss +++ b/src/stylesheets/main.scss @@ -25,3 +25,4 @@ @import 'pages/classes'; @import 'pages/tests'; @import 'pages/class'; +@import 'pages/test'; diff --git a/src/stylesheets/pages/_test.scss b/src/stylesheets/pages/_test.scss new file mode 100644 index 0000000..b0b7fa4 --- /dev/null +++ b/src/stylesheets/pages/_test.scss @@ -0,0 +1,26 @@ +.testPage { + &__testResultWrapper { + @include space-contents; + } + + &__testResult { + display: flex; + align-items: center; + gap: 1rem; + + &__grade { + background: #ddd; + color: $secondary-colour; + padding: 1rem; + border-radius: 10px; + font-weight: bold; + font-size: 1.5em; + } + + &__score { + display: flex; + flex-direction: column; + align-items: center; + } + } +}