-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
107 lines (88 loc) · 1.42 KB
/
App.css
File metadata and controls
107 lines (88 loc) · 1.42 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
.app-container {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 1rem;
}
.start-card {
width: 100%;
max-width: 360px;
margin: 0 auto;
text-align: center;
}
.assessment-page {
width: 100%;
max-width: none;
}
.assessment-container {
align-items: stretch;
justify-content: flex-start;
padding: 0;
}
.assessment-layout {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 0;
margin: 0.75rem 0;
min-height: calc(100vh - 6rem);
}
.question-section {
border-right: 1px solid #c7c7c7;
padding: 0.75rem;
}
.right-section {
display: flex;
flex-direction: column;
}
.answer-section {
padding: 0.75rem;
}
.results-section {
border-top: 1px solid #c7c7c7;
padding: 0.75rem;
}
.results-section h2 {
margin-top: 0;
}
.answer-section textarea {
width: 100%;
min-height: 220px;
resize: vertical;
}
.start-card h1 {
margin-top: 0;
}
.form-row {
display: flex;
gap: 0.5rem;
justify-content: center;
}
.form-row input {
flex: 1;
padding: 0.35rem 0.5rem;
}
.form-row button {
padding: 0.35rem 0.75rem;
}
.message {
margin: 0.5rem 0 0;
}
.error {
color: #b00020;
}
@media (max-width: 480px) {
.form-row {
flex-direction: column;
}
}
@media (max-width: 800px) {
.assessment-layout {
grid-template-columns: 1fr;
min-height: auto;
}
.question-section {
border-right: 0;
border-bottom: 1px solid #c7c7c7;
}
}