-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.component.scss
More file actions
101 lines (85 loc) · 1.54 KB
/
app.component.scss
File metadata and controls
101 lines (85 loc) · 1.54 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
.app-container {
min-height: 100vh;
display: flex;
flex-direction: column;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.app-header {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
padding: 2rem 0;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
.app-title {
font-size: 3rem;
font-weight: 700;
color: #2d3748;
margin-bottom: 0.5rem;
display: flex;
align-items: center;
gap: 1rem;
}
.app-icon {
font-size: 3.5rem;
filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.app-subtitle {
font-size: 1.25rem;
color: #718096;
margin: 0;
font-weight: 400;
}
.app-main {
flex: 1;
padding: 2rem 0;
}
.app-footer {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border-top: 1px solid rgba(255, 255, 255, 0.2);
padding: 1.5rem 0;
margin-top: auto;
}
.footer-text {
color: rgba(255, 255, 255, 0.8);
text-align: center;
margin: 0;
font-size: 0.9rem;
}
.footer-year {
font-weight: 500;
}
/* Responsive Design */
@media (max-width: 768px) {
.app-header {
padding: 1.5rem 0;
}
.app-title {
font-size: 2.5rem;
flex-direction: column;
gap: 0.5rem;
text-align: center;
}
.app-icon {
font-size: 3rem;
}
.app-subtitle {
font-size: 1.1rem;
text-align: center;
}
.app-main {
padding: 1rem 0;
}
}
@media (max-width: 480px) {
.app-title {
font-size: 2rem;
}
.app-icon {
font-size: 2.5rem;
}
.app-subtitle {
font-size: 1rem;
}
}