-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
146 lines (146 loc) · 5.56 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/images/favicon-32x32.png"
/>
<title>Frontend Mentor | Results summary component</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main>
<div class="result-summary">
<div class="results grid-flow" data-spacing="large">
<h1 class="section-title">Your Result</h1>
<p class="result-score"><span>76</span> of 100</p>
<div class="grid-flow">
<p class="result-rank">Great</p>
<p>
You scored higher than 65% of the people who have taken these
tests.
</p>
</div>
</div>
<div class="summary grid-flow">
<h2 class="section-title">Summary</h2>
<div class="grid-flow">
<div class="summary-item" data-item-type="accent-1">
<div class="flex-group">
<svg
class="summary-icon"
xmlns="http://www.w3.org/2000/svg"
width="20"
height="20"
fill="none"
viewBox="0 0 20 20"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.25"
d="M10.833 8.333V2.5l-6.666 9.167h5V17.5l6.666-9.167h-5Z"
/>
</svg>
<h3 class="summary-item-title">Reaction</h3>
</div>
<p class="summary-score"><span>80</span> / 100</p>
</div>
<div class="summary-item" data-item-type="accent-2">
<div class="flex-group">
<svg
class="summary-icon"
xmlns="http://www.w3.org/2000/svg"
width="20"
height="20"
fill="none"
viewBox="0 0 20 20"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.25"
d="M5.833 11.667a2.5 2.5 0 1 0 .834 4.858"
/>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.25"
d="M3.553 13.004a3.333 3.333 0 0 1-.728-5.53m.025-.067a2.083 2.083 0 0 1 2.983-2.824m.199.054A2.083 2.083 0 1 1 10 3.75v12.917a1.667 1.667 0 0 1-3.333 0M10 5.833a2.5 2.5 0 0 0 2.5 2.5m1.667 3.334a2.5 2.5 0 1 1-.834 4.858"
/>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.25"
d="M16.447 13.004a3.334 3.334 0 0 0 .728-5.53m-.025-.067a2.083 2.083 0 0 0-2.983-2.824M10 3.75a2.085 2.085 0 0 1 2.538-2.033 2.084 2.084 0 0 1 1.43 2.92m-.635 12.03a1.667 1.667 0 0 1-3.333 0"
/>
</svg>
<h3 class="summary-item-title">Memory</h3>
</div>
<p class="summary-score"><span>92</span> / 100</p>
</div>
<div class="summary-item" data-item-type="accent-3">
<div class="flex-group">
<svg
class="summary-icon"
xmlns="http://www.w3.org/2000/svg"
width="20"
height="20"
fill="none"
viewBox="0 0 20 20"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.25"
d="M7.5 10h5M10 18.333A8.333 8.333 0 1 0 1.667 10c0 1.518.406 2.942 1.115 4.167l-.699 3.75 3.75-.699A8.295 8.295 0 0 0 10 18.333Z"
/>
</svg>
<h3 class="summary-item-title">Verbal</h3>
</div>
<p class="summary-score"><span>61</span> / 100</p>
</div>
<div class="summary-item" data-item-type="accent-4">
<div class="flex-group">
<svg
class="summary-icon"
xmlns="http://www.w3.org/2000/svg"
width="20"
height="20"
fill="none"
viewBox="0 0 20 20"
>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.25"
d="M10 11.667a1.667 1.667 0 1 0 0-3.334 1.667 1.667 0 0 0 0 3.334Z"
/>
<path
stroke-linecap="round"
stroke-linejoin="round"
stroke-width="1.25"
d="M17.5 10c-1.574 2.492-4.402 5-7.5 5s-5.926-2.508-7.5-5C4.416 7.632 6.66 5 10 5s5.584 2.632 7.5 5Z"
/>
</svg>
<h3 class="summary-item-title">Visual</h3>
</div>
<p class="summary-score"><span>72</span> / 100</p>
</div>
</div>
<button class="button">Continue</button>
</div>
</div>
<div class="attribution">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank"
>Frontend Mentor</a
>. Coded by <a href="#">Itir Emiroglu</a>.
</div>
</main>
</body>
</html>