-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
98 lines (82 loc) · 1.5 KB
/
styles.css
File metadata and controls
98 lines (82 loc) · 1.5 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.container {
max-width: 800px;
width: 100%;
}
header {
text-align: center;
margin-bottom: 40px;
}
h1 {
color: white;
font-size: 2.5rem;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
margin-bottom: 10px;
}
main {
display: flex;
flex-direction: column;
gap: 20px;
}
.card {
background: white;
border-radius: 12px;
padding: 30px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
h2 {
color: #667eea;
font-size: 1.5rem;
margin-bottom: 15px;
}
.content {
color: #333;
font-size: 1.1rem;
line-height: 1.6;
}
.loading {
color: #999;
font-style: italic;
}
.error {
color: #e74c3c;
font-style: italic;
}
footer {
text-align: center;
margin-top: 40px;
color: white;
font-size: 1rem;
}
@media (max-width: 600px) {
h1 {
font-size: 1.8rem;
}
.card {
padding: 20px;
}
h2 {
font-size: 1.3rem;
}
.content {
font-size: 1rem;
}
}