-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
114 lines (97 loc) · 1.84 KB
/
Copy pathstyles.css
File metadata and controls
114 lines (97 loc) · 1.84 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
body {
margin: 0;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f5fefb;
}
.card {
display: flex;
flex-direction: column;
width: 90%;
max-width: 600px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
border-radius: 12px;
overflow: hidden;
background-color: white;
}
@media (min-width: 768px) {
.card {
flex-direction: row;
}
}
.result-section {
flex: 1;
background: linear-gradient(135deg, #6a85f5, #a1c4fd);
color: white;
padding: 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.result-section h1 {
font-size: 60px;
margin: 0;
}
.result-section p {
margin-top: 10px;
font-size: 18px;
}
.summary-section {
flex: 1;
padding: 20px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.summary-section h2 {
font-size: 18px;
color: #555;
margin-bottom: 20px;
}
.summary-item {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
}
.summary-item span {
font-size: 16px;
}
.summary-item .label {
color: #888;
}
.summary-item .score {
font-weight: bold;
color: #333;
}
.continue-btn {
text-align: center;
margin-top: 20px;
}
.continue-btn button {
padding: 10px 20px;
font-size: 16px;
color: white;
background-color: #333;
border: none;
border-radius: 6px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.continue-btn button:hover {
background-color: #555;
}
.continue-btn button:focus {
outline: 2px solid #6a85f5;
outline-offset: 2px;
}
.summary-item:hover .label {
color: #6a85f5;
}
.summary-item:hover .score {
color: #a1c4fd;
}