-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (81 loc) · 1.58 KB
/
Copy pathstyle.css
File metadata and controls
91 lines (81 loc) · 1.58 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
body {
background-color: #000;
color: #add8e6;
font-family: 'Cinzel', serif;
margin: 0;
padding: 0;
text-align: center;
line-height: 1.8;
}
h1 {
margin: 20px 0;
color: #00bfff;
text-shadow: 0 0 10px rgba(0, 191, 255, 1.5);
text-transform: uppercase;
letter-spacing: 2px;
}
h2 {
margin: 15px 0;
color: #1e90ff;
text-shadow: 0 0 8px rgba(30, 206, 255, 1.2);
}
p {
max-width: 700px;
margin: 15px auto;
font-size: 16px;
line-height: 1.8;
color: #87cefa;
}
img {
max-width: 90%;
height: auto;
margin: 20px auto;
border: 2px solid #1e90ff;
border-radius: 10px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
img:hover {
transform: scale(1.05);
box-shadow: 0 0 20px rgba(30, 144, 255, 0.6);
}
footer {
margin-top: 50px;
padding: 20px;
border-top: 1px solid #333;
font-size: 14px;
color: #4682b4;
}
a {
color: #00ffff;
text-decoration: none;
transition: color 0.3s ease;
}
a:hover {
color: #1e90ff;
text-decoration: underline;
}
button {
background-color: #1e90ff;
color: #000;
border: none;
padding: 10px 20px;
margin: 10px;
border-radius: 6px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.2s ease;
}
button:hover {
background-color: #00bfff;
color: #fff;
transform: scale(1.05);
}
@media (max-width: 768px) {
p {
font-size: 14px;
padding: 0 15px;
}
img {
max-width: 100%;
}
}