-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
55 lines (47 loc) · 884 Bytes
/
Copy pathApp.css
File metadata and controls
55 lines (47 loc) · 884 Bytes
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
.app {
display: flex;
justify-content: center;
align-items: flex-start;
min-height: 100vh;
padding: 20px;
}
.app-container {
width: 100%;
max-width: 1200px;
background: white;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
overflow: hidden;
}
.app-header {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 40px;
text-align: center;
}
.app-header h1 {
font-size: 2.5rem;
margin-bottom: 10px;
font-weight: 700;
}
.app-header p {
font-size: 1.1rem;
opacity: 0.95;
}
.results-container {
display: flex;
flex-direction: column;
gap: 20px;
padding: 30px;
}
@media (max-width: 768px) {
.app-header h1 {
font-size: 2rem;
}
.app-header p {
font-size: 1rem;
}
.results-container {
padding: 20px;
}
}