-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
71 lines (62 loc) · 1.31 KB
/
style.css
File metadata and controls
71 lines (62 loc) · 1.31 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
body {
background-color: #0b0d17; /* Uzay siyahı */
color: #ffffff;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
min-height: 100vh;
}
.container {
max-width: 800px;
width: 90%;
margin: 40px 0;
text-align: center;
}
header h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
background: linear-gradient(90deg, #a9c9ff, #ffbbec);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.media-container {
margin: 20px 0;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 0 20px rgba(169, 201, 255, 0.2);
border: 1px solid #2d3446;
}
img, iframe {
width: 100%;
height: auto;
min-height: 300px;
display: block;
}
.info-box {
background-color: #1c1f2e;
padding: 20px;
border-radius: 10px;
text-align: left;
line-height: 1.6;
}
#apod-date {
color: #8f9bb3;
font-style: italic;
margin-bottom: 10px;
}
.loading {
font-size: 1.2rem;
color: #a9c9ff;
margin-top: 50px;
animation: pulse 1.5s infinite;
}
@keyframes pulse {
0% { opacity: 0.5; }
50% { opacity: 1; }
100% { opacity: 0.5; }
}
.hidden {
display: none;
}