-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (49 loc) · 1.51 KB
/
style.css
File metadata and controls
58 lines (49 loc) · 1.51 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
/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');
/* Solid red background + parallax-ready image */
body {
font-family: 'Inter', sans-serif;
background-color: #ff0000; /* Solid red */
background-image: url('https://raw.githubusercontent.com/thothmod/thothmod.github.io/main/images/background.png');
background-repeat: no-repeat;
background-position: center center;
background-size: cover;
background-attachment: fixed; /* Required for parallax illusion */
}
/* Main glassy container */
.glass-container {
background: rgba(255, 255, 255, 0.12);
backdrop-filter: blur(16px) saturate(180%);
-webkit-backdrop-filter: blur(16px) saturate(180%);
border: 1px solid rgba(255, 255, 255, 0.2);
}
/* Glass buttons */
.glass-button {
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(14px) saturate(180%);
-webkit-backdrop-filter: blur(14px) saturate(180%);
border: 1px solid rgba(255, 255, 255, 0.2);
color: white;
}
/* Hover effect */
.glass-button:hover {
background: rgba(255, 255, 255, 0.25);
}
/* Status message glass panel */
.glass-status {
background: rgba(0, 0, 0, 0.25);
backdrop-filter: blur(10px) saturate(180%);
-webkit-backdrop-filter: blur(10px) saturate(180%);
border: 1px solid rgba(255, 255, 255, 0.15);
}
/* Disable text selection */
* {
user-select: none;
}
/* Image grows on hover */
img {
transition: transform 0.3s ease;
}
img:hover {
transform: scale(1.08);
}