-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
48 lines (42 loc) · 1.03 KB
/
styles.css
File metadata and controls
48 lines (42 loc) · 1.03 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
body
{
background-color: rgb(63, 63, 63);
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-align: center;
}
button
{
background-color: rgb(120, 21, 74);
color:white;
border:none;
border-radius: 5px;
font-size: medium;
font-weight: bold;
height:30px;
transition: all 0.3s ease-in-out; /* Smooth transition */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
img
{
width:25%;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
button:hover {
filter: brightness(1.1);
transform: translateY(-2px) scale(1.05); /* Slight scale for a "bubbly" effect */
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
h1, h2, h3, summary, p, a
{
color:white;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
@keyframes float {
0% { transform: translateY(0); }
50% { transform: translateY(-10px); } /* Moves up */
100% { transform: translateY(0); } /* Back to original position */
}
img {
animation: float 3s ease-in-out infinite; /* Smooth floating effect */
}