-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (87 loc) · 2.32 KB
/
style.css
File metadata and controls
107 lines (87 loc) · 2.32 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
99
100
101
102
103
104
105
106
107
.card-wrapper, .card-content { border-radius: 20px; }
[data-transform="true"] .more {
color: rgb(71 85 105);
}
.card-transform-rectangle-w {
width: 50% !important;
height: calc(100% - 20px) !important;
margin-left: 10px;
border-radius: 10px;
}
.card-transform-rectangle-h {
width: calc(100% - 20px) !important;
margin-top: 10px;
height: 50% !important;
border-radius: 10px;
}
.card-transform-square {
width: calc(100% - 20px) !important;
margin-top: 10px;
height: 70% !important;
border-radius: 10px;
}
.overlay[data-show="false"] {
pointer-events: none;
}
.overlay[data-show="true"] {
pointer-events: all;
backdrop-filter: blur(12px);
background-color: #00000090;
}
.modal-wrap .modal-content[data-collapsed="false"] .modal-body {
height: 0px;
}
.modal-wrap[data-invisible="true"] {
background-color: transparent;
}
[data-domain] {
font-size: 2.25rem;
transform-origin: bottom left;
}
.card-wrapper .card-content[data-show="false"] {
opacity: 0;
}
.card-wrapper .card-content {
transition: all .3s ease-in-out, opacity 1ms;
}
[data-domain="true"] {
transform: scale(.56);
font-size: 4rem;
margin-bottom: 20px;
}
.modal-wrap .modal-content .modal-header [data-domain] {
transition: transform .3s ease-in-out;
}
.modal-wrap .modal-content[data-collapsed="true"] .modal-header *[data-domain] {
transform: translateY(20px) scale(1);
font-weight: 500;
}
.modal-wrap .modal-content[data-collapsed="true"] .modal-header *[data-available] {
transform: translateX(-100%);
}
.toast-wrapper[data-show="false"] {
transform: translateY(150%);
}
.modal-wrap .modal-content[data-collapsed="true"] [data-long="true"] {
--scale: 1;
--offset-y: 20px;
animation: longScrollAnim var(--scroll-time) alternate infinite linear;
}
[data-long="true"] {
--scale: 1;
--offset-y: 0px;
animation: longScrollAnim var(--scroll-time) alternate infinite linear;
}
[data-domain="true"][data-long="true"] {
--scale: .56;
--offset-y: 0px;
animation: longScrollAnim var(--scroll-time) alternate infinite linear;
}
@keyframes longScrollAnim {
from {
transform: translate(0, var(--offset-y)) scale(var(--scale));
}
to {
transform: translate(var(--scroll-span), var(--offset-y)) scale(var(--scale));
}
}