-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathass.css
More file actions
98 lines (87 loc) · 1.61 KB
/
ass.css
File metadata and controls
98 lines (87 loc) · 1.61 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', sans-serif;
}
body {
height: 100vh;
background: linear-gradient(to right, #141e30, #243b55);
display: flex;
align-items: center;
justify-content: center;
transition: background 1s ease-in-out;
}
.container {
text-align: center;
color: white;
transition: opacity 1s ease-in-out;
}
.logo {
font-size: 60px;
font-weight: bold;
animation: slideIn 1s ease;
}
.tagline {
font-size: 24px;
margin: 20px 0;
animation: fadeIn 2s ease;
}
button {
padding: 12px 30px;
font-size: 18px;
border: none;
background: white;
color: #2575fc;
border-radius: 30px;
cursor: pointer;
transition: background 0.3s, transform 0.3s;
}
button:hover {
background: #f0f0f0;
transform: scale(1.05);
}
.fade-out {
opacity: 0;
}
@keyframes slideIn {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.book-rating {
margin: 8px 0;
font-size: 18px;
color: gold;
}
.watson-corner {
position: fixed;
bottom: 15px;
right: 20px;
background: rgba(255, 255, 255, 0.08);
color: #e0e0e0;
font-size: 14px;
padding: 8px 14px;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 20px;
backdrop-filter: blur(4px);
box-shadow: 0 0 10px rgba(0, 180, 216, 0.2);
transition: transform 0.3s ease;
z-index: 1000;
display: flex;
align-items: center;
gap: 6px;
}