-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtl.css
More file actions
63 lines (57 loc) · 1.34 KB
/
Copy pathtl.css
File metadata and controls
63 lines (57 loc) · 1.34 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
/* Scientifically addictive background: deep blue to purple gradient */
body {
background: linear-gradient(135deg, #1e3c72, #2a5298, #6a11cb, #2575fc);
background-size: 400% 400%;
animation: bgShift 15s ease infinite;
font-family: 'Segoe UI', sans-serif;
color: #fff;
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
@keyframes bgShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
/* Addictive-style Button */
button {
background-color: #ff3366;
border: none;
border-radius: 8px;
padding: 14px 28px;
font-size: 1rem;
font-weight: bold;
color: white;
cursor: pointer;
box-shadow: 0 6px 12px rgba(0,0,0,0.3);
transition: transform 0.15s ease, box-shadow 0.15s ease;
}
button:hover {
transform: scale(1.05);
box-shadow: 0 8px 16px rgba(0,0,0,0.35);
}
button:active {
transform: scale(0.97);
box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
/* ID: Red */
#red {
background-color: #ff4c4c;
color: white;
padding: 1rem;
border-radius: 5px;
margin: 10px 0;
}
/* ID: Gray */
#gray {
background-color: #b0b0b0;
color: #222;
padding: 1rem;
border-radius: 5px;
margin: 10px 0;
}