-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
122 lines (119 loc) · 2.32 KB
/
Copy pathstyle.css
File metadata and controls
122 lines (119 loc) · 2.32 KB
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
body {
display: flex;
align-items: center;
justify-content: center;
min-width: 100vh;
font-family: Hanken Grotesk;
}
.container {
display: flex;
width: 600px;
justify-content: center;
border-radius: 20px;
box-shadow: 1px 0px 20px 2px rgb(0, 0, 0, 0.4);
}
.left {
background: linear-gradient(hsl(252, 100%, 67%), hsl(241, 81%, 54%));
border-radius: 20px;
padding: 20px;
width: 40%;
text-align: center;
color: white;
}
.right {
width: 50%;
padding: 20px;
}
.score-left {
padding: 50px;
width: 74px;
height: 74px;
border-radius: 100%;
box-shadow: inset 1px 1px 12px 0px hsla(256, 72%, 46%, 1);
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
margin: 0 auto;
}
.big-score {
color: white;
font-weight: bold;
font-size: 60px;
}
.score-icon {
display: flex;
}
.score {
display: flex;
justify-content: space-between;
background-color: hsla(0, 100%, 67%, 0.1);
color: hsl(0, 100%, 67%);
margin-bottom: 15px;
padding: 15px;
border-radius: 10px;
}
.grey {
color: rgba(87, 87, 87, 0.997);
}
.score-icon img {
margin-right: 5px;
}
.black-test {
color: #222;
font-weight: bold;
}
.scores-memory {
color: hsl(39, 100%, 56%);
background: hsla(39, 100%, 50%, 0.1);
}
.scores-verbal {
color: hsl(166, 100%, 37%);
background: hsla(166, 100%, 37%, 0.1);
}
.scores-visual {
color: hsl(234, 85%, 45%);
background: hsla(234, 85%, 45%, 0.1);
}
button {
margin-top: 30px;
padding: 15px 30px;
border: none;
color: white;
outline: none;
width: 100%;
border-radius: 25px;
background-color: hsl(224, 30%, 27%);
}
@media (max-width: 760px) {
.left {
width: 100%;
padding: 0px;
border-radius: 0px;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
}
.right {
padding: 0px;
width: 80%;
}
.left-text {
padding: 20px;
text-align: center;
}
.container {
width: 100%;
flex-direction: column;
border-radius: 0px;
overflow: hidden;
padding: 0px;
}
}
.attribution {
display: flex;
text-align: center;
font-size: 11px;
}
.attribution a {
color: hsl(228, 45%, 44%);
}