-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
110 lines (96 loc) · 1.81 KB
/
Copy pathstyles.css
File metadata and controls
110 lines (96 loc) · 1.81 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
102
103
104
105
106
107
108
109
110
/* style.css */
body {
margin: 0;
padding: 0;
background: linear-gradient(to right, #0f0f0f, #0f2255);
font-family: 'Poppins', sans-serif;
text-align: center;
color: rgb(183, 230, 16);
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
animation: fadeInBody 2s ease-in;
}
h1 {
font-size: 2.5rem;
margin-bottom: 20px;
animation: slideDown 1s ease-out;
}
a {
display: inline-block;
text-decoration: none;
color: #ee9105;
font-size: 1.5rem;
margin-top: 20px;
background: rgba(255, 255, 255, 0.1);
padding: 15px 25px;
border-radius: 12px;
backdrop-filter: blur(5px);
transition: transform 0.3s, background 0.3s;
animation: zoomIn 1.5s ease-in-out;
}
a:hover {
background: rgba(255, 255, 255, 0.2);
transform: scale(1.05);
}
img {
width: 300px;
height: auto;
border-radius: 15px;
margin-bottom: 10px;
transition: transform 0.3s ease;
}
img:hover {
transform: scale(1.1);
}
/* Animations */
@keyframes fadeInBody {
from {
opacity: 0;
background-position: left;
}
to {
opacity: 1;
background-position: right;
}
}
@keyframes slideDown {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
@keyframes zoomIn {
from {
transform: scale(0.8);
opacity: 0;
}
to {
transform: scale(1);
opacity: 1;
}
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
}
textarea {
width: 100%;
height: 150px;
margin-bottom: 10px;
}
button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
button:hover {
background-color: #f0f0f0;
}