-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
59 lines (59 loc) · 1.53 KB
/
style.css
File metadata and controls
59 lines (59 loc) · 1.53 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
.paper-layer {
position: absolute;
inset: 4px;
border-radius: 1rem;
transition: all 0.3s ease;
transform-origin: bottom;
box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.05);
}
.paper-1 { background: linear-gradient(to bottom, #f9a8d4, #f472b6); }
.paper-2 { background: linear-gradient(to bottom, #93c5fd, #60a5fa); }
.paper-3 { background: linear-gradient(to bottom, #34d399, #10b981); }
.paper-layer::after {
content: '';
position: absolute;
top: 10px;
right: 8px;
height: 80%;
width: 6px;
border-right: 2px dotted rgba(0, 0, 0, 0.1);
opacity: 0.6;
}
.inside-logo {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 1.25rem;
font-weight: 600;
color: #1f2937;
opacity: 0.85;
transition: opacity 0.3s;
}
.group:hover .inside-logo {
opacity: 1;
}
.front-logo {
position: absolute;
top: 12px;
left: 12px;
font-size: 1.25rem;
font-weight: 600;
color: white;
opacity: 0.85;
}
/* New style for bottom-right text */
.bottom-right-text {
position: absolute;
bottom: 10px;
right: 10px;
font-size: 0.8rem;
font-weight: 600;
color: white;
text-shadow: 0 1px 2px rgba(0,0,0,0.2);
opacity: 0.7;
transition: opacity 0.3s;
}
.group:hover .bottom-right-text {
opacity: 1;
}