Skip to content

Commit 379e59d

Browse files
author
amelie
committed
Final fixes
1 parent 314aa36 commit 379e59d

File tree

9 files changed

+216
-78
lines changed

9 files changed

+216
-78
lines changed

assets/images/quiz/congrats.gif

525 KB
Loading

assets/images/quiz/oh-no.gif

1.57 MB
Loading

assets/images/quiz/well-done.gif

1.24 MB
Loading

assets/scss/components/_btn.scss

+12
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,11 @@
5555
}
5656
}
5757

58+
.btn--light {
59+
color: $color-dark;
60+
background: $color-light;
61+
}
62+
5863
.btn--animated {
5964
.icon {
6065
width: 40px;
@@ -117,6 +122,13 @@
117122
stroke: $color-primary;
118123
}
119124
}
125+
126+
&.btn--light {
127+
.icon .base,
128+
.icon .tip {
129+
stroke: $color-info;
130+
}
131+
}
120132
}
121133

122134
@media (max-width: $screen-xs) {

assets/scss/components/checkbox.scss

+17-14
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
11
.checkbox {
2-
margin-bottom: .2em;
3-
padding-left: 1.8em;
2+
margin-bottom: .6em;
3+
padding-left: 30px;
44
color: #fff;
55

66
code {
7-
background-color: transparent;
8-
color: $color-light;
9-
font-family: Courier, monospace;
10-
white-space: unset;
7+
font-size: 15px;
8+
background-color: #fff;
9+
color: $color-dark;
10+
padding: .2em;
11+
border-radius: 5px;
1112
}
1213

1314
pre {
14-
background-color: transparent !important;
15-
padding: 5px;
15+
margin: 0;
16+
width: 100%;
17+
background-color: #fff !important;
18+
padding: .5em;
19+
border-radius: 5px;
1620
}
1721
}
1822

@@ -22,7 +26,7 @@
2226

2327
.checkbox__label {
2428
position: relative;
25-
font-size: .8em;
29+
display: flex;
2630
line-height: 1.3;
2731

2832
&::before {
@@ -32,7 +36,7 @@
3236
background-color: #fff;
3337
position: absolute;
3438
top: 0;
35-
left: -35px;
39+
left: -30px;
3640
cursor: pointer;
3741
}
3842
}
@@ -42,9 +46,8 @@
4246
font-family: 'icomoon';
4347
content: '\e918';
4448
position: absolute;
45-
left: -32px;
46-
font-size: 16px;
47-
top: 2px;
49+
left: -33px;
50+
top: 1px;
4851
color: $color-dark;
4952
}
50-
}
53+
}

assets/scss/components/question.scss

+16-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
margin-bottom: 2em;
33

44
p {
5-
margin-bottom: 1em;
5+
margin-bottom: 1em;
66
}
77
}
88

@@ -17,15 +17,16 @@
1717
font-size: 18px;
1818

1919
.title {
20+
margin: 0 0 7px;
2021
color: $color-danger;
2122
font-family: 'faktum bold';
2223
}
23-
24+
2425
code {
25-
font-size: 15px;
26-
padding: .2em;
2726
margin: 0 0 .3em;
28-
border-radius: 8px;
27+
padding: .2em;
28+
font-size: 15px;
29+
border-radius: 5px;
2930
}
3031
}
3132

@@ -38,11 +39,18 @@
3839
.question--success {
3940
.question__content {
4041
border-left: solid 4px $color-success;
41-
}
42+
}
4243
}
4344

4445
.question--error {
4546
.question__content {
4647
border-left: solid 4px $color-danger;
47-
}
48-
}
48+
}
49+
}
50+
51+
@media (max-width: $screen-sm) {
52+
.question__info {
53+
padding: .6em .6em 1em;
54+
font-size: 16px;
55+
}
56+
}

assets/scss/components/quiz.scss

+107-34
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,133 @@
1-
.quiz {
2-
display: flex;
1+
.quiz {
2+
padding: 7em 5em 5em;
3+
display: flex;
34
flex-direction: column;
4-
background-color: $color-dark;
5-
padding: 7em 5em 5em;
65
color: #fff;
6+
background-color: $color-dark;
77
}
88

99
.quiz__title {
10+
margin: 0 0 1.5em;
1011
display: flex;
1112
flex-direction: column;
12-
font-size: 2.3em;
1313
font-family: 'faktum bold';
14+
font-size: 2.3em;
1415
color: $color-light;
1516
line-height: 1.2;
16-
margin-bottom: 0.8em;
17-
}
18-
19-
.quiz__submit {
20-
display: flex;
21-
justify-content: flex-end;
22-
margin-top: 2em;
2317

24-
button {
25-
color: #fff;
26-
font-size: .95em;
27-
font-family: 'antikor bold';
28-
padding: 1em 2.5em;
29-
background-color: $color-light;
18+
span:last-of-type {
19+
&:after {
20+
content: '_';
21+
}
3022
}
3123
}
3224

3325
.quiz__answer {
34-
margin-top: .8em;
35-
color: #fff;
26+
margin: .8em 0 0;
3627
padding: 0 .3em;
28+
color: #fff;
29+
}
30+
31+
.quiz__submit {
32+
margin: 3em 0 0;
33+
display: flex;
34+
justify-content: flex-end;
3735
}
3836

3937
.quiz__score {
38+
margin: 3em 0 0;
4039
display: flex;
41-
align-self: center;
40+
justify-content: space-between;
4241
align-items: center;
43-
flex-direction: column;
44-
font-family: 'faktum bold';
45-
color: $color-light;
4642

47-
strong {
48-
line-height: 1;
49-
font-size: .7em;
43+
.title {
44+
margin: 0 0 20px;
45+
font-family: 'faktum bold';
46+
font-size: 40px;
47+
text-transform: uppercase;
48+
49+
span {
50+
margin-right: 17px;
51+
}
5052
}
51-
52-
.emoji {
53-
font-size: 2.7em;
54-
margin: .3em;
53+
54+
.detail {
55+
margin-left: 69px;
56+
padding-left: 25px;
57+
display: flex;
58+
flex-direction: column;
59+
font-size: 24px;
60+
border-left: solid 4px;
61+
62+
strong {
63+
font-family: 'faktum bold';
64+
}
5565
}
5666

57-
.percentage {
58-
font-size: 3em;
67+
img {
68+
margin: 0;
69+
width: 380px;
5970
}
60-
}
71+
}
72+
73+
.quiz__score--excellent {
74+
.title {
75+
color: $color-light;
76+
}
77+
78+
.detail {
79+
border-color: $color-light;
80+
81+
strong {
82+
color: $color-light;
83+
}
84+
}
85+
}
86+
87+
.quiz__score--improvable {
88+
.title {
89+
color: $color-danger;
90+
}
91+
92+
.detail {
93+
border-color: $color-danger;
94+
95+
strong {
96+
color: $color-danger;
97+
}
98+
}
99+
}
100+
101+
@media (max-width: $screen-md) {
102+
.quiz__score {
103+
img {
104+
width: 320px;
105+
}
106+
}
107+
}
108+
109+
@media (max-width: $screen-sm) {
110+
.quiz {
111+
padding: 80px 25px 100px;
112+
font-size: 16px;
113+
}
114+
115+
.quiz__score {
116+
flex-direction: column;
117+
text-align: center;
118+
119+
.detail {
120+
margin: 0 0 35px;
121+
padding: 0;
122+
font-size: 20px;
123+
border: none;
124+
}
125+
}
126+
}
127+
128+
@media (max-width: $screen-xxs) {
129+
.quiz__title {
130+
margin: 0 0 1em;
131+
font-size: 27px;
132+
}
133+
}

assets/scss/components/radio.scss

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
.radio {
2-
margin-bottom: .2em;
3-
padding-left: 1.9em;
2+
margin-bottom: .6em;
3+
padding-left: 30px;
44
color: #fff;
55

66
code {
77
font-size: 15px;
8-
background-color: #fff;
8+
background-color: #fff;
99
color: $color-dark;
1010
padding: .2em;
11-
border-radius: 8px;
11+
border-radius: 5px;
1212
}
1313

1414
pre {
1515
margin: 0;
1616
width: 100%;
1717
background-color: #fff !important;
18-
padding: .5em;
19-
border-radius: 10px;
18+
padding: .5em;
19+
border-radius: 5px;
2020
}
2121
}
2222

@@ -26,7 +26,7 @@
2626

2727
.radio__label {
2828
position: relative;
29-
font-size: .8em;
29+
display: flex;
3030
line-height: 1.3;
3131

3232
&::before {
@@ -36,7 +36,7 @@
3636
border-radius: 50%;
3737
position: absolute;
3838
top: 1px;
39-
left: -37px;
39+
left: -30px;
4040
cursor: pointer;
4141
background-color: #fff;
4242
}
@@ -53,4 +53,4 @@
5353
left: -35px;
5454
top: 3px;
5555
}
56-
}
56+
}

0 commit comments

Comments
 (0)