-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
152 lines (124 loc) · 2.39 KB
/
style.css
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
147
148
149
150
151
152
/* reset styles */
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
font-family: 'Hanken Grotesk', sans-serif;
background-color: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow-y: hidden;
}
.mainContainer{
width: 600px;
height: 400px;
/* background-color: red; */
border-radius: 20px;
display: flex;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.result{
background-color: hsl(241, 81%, 54%);
border-radius: 20px;
text-align: center;
padding-top: 16px;
padding-bottom: 24px;
width: 50%;
}
.result h1{
color: hsl(241, 100%, 89%);
font-size: 20px;
}
.score{
background: hsl(234, 85%, 45%);
width: 150px;
margin: 24px auto;
height: 150px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.score h1{
font-size: 48px;
color: white;
display: flex;
flex-direction: column;
}
.score h1 span{
font-size: 16px;
color: hsl(241, 100%, 89%);
}
.result h2{
color: white;
margin-bottom: 14px;
}
.result p{
color: hsl(241, 100%, 89%);
padding: 0 28px;
}
.summary{
padding: 24px;
width: 50%;
}
.summary h1{
font-size: 20px;
color: hsl(224, 30%, 27%);
margin-bottom: 24px;
}
.criterias{
display: flex;
flex-direction: column;
gap: 8px;
}
.criterias div{
display: flex;
justify-content: space-between;
align-items: center;
padding: 8px 16px;
border-radius: 12px;
}
.criterias div h5{
color: hsl(224, 30%, 27%);
font-size: 16px;
font-weight: 800;
}
.criterias div h5 span{
color: hsl(241, 100%, 89%)
}
.reaction{
background-color: hsl(0, 100%, 97%);
}
.reaction h3{
color: hsl(0, 100%, 67%);
}
.memory{
background-color: hsl(39, 100%, 97%);
}
.memory h3{
color: hsl(39, 100%, 56%);
}
.verbal{
background-color: hsl(166, 100%, 97%);
}
.verbal h3{
color: hsl(166, 100%, 37%);
}
.visual{
background-color: hsl(234, 85%, 97%);
}
.visual h3{
color: hsl(234, 85%, 45%);
}
button{
background-color: hsl(224, 30%, 27%);
color: white;
width: 100%;
border-radius: 50px;
padding: 12px 0;
margin-top: 16px;
}