-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
106 lines (93 loc) · 1.48 KB
/
Copy pathstyles.css
File metadata and controls
106 lines (93 loc) · 1.48 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
body {
font-family: Arial, sans-serif;
background-color: #141414;
color: #ffffff;
margin: 0;
padding: 20px;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.controls {
margin-bottom: 20px;
}
.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr);
gap: 10px;
aspect-ratio: 1 / 1;
}
.frame {
position: relative;
overflow: hidden;
transition: all 0.3s ease;
}
.frame video {
width: 100%;
height: 100%;
object-fit: cover;
}
.frame-border {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
pointer-events: none;
opacity: 0;
transition: opacity 0.3s ease;
}
.frame-border img {
position: absolute;
width: 20px;
height: 20px;
}
.frame-border .corner-tl {
top: 0;
left: 0;
}
.frame-border .corner-tr {
top: 0;
right: 0;
transform: scaleX(-1);
}
.frame-border .corner-bl {
bottom: 0;
left: 0;
transform: scaleY(-1);
}
.frame-border .corner-br {
bottom: 0;
right: 0;
transform: scale(-1);
}
.frame-border .edge-top,
.frame-border .edge-bottom {
left: 20px;
right: 20px;
height: 20px;
background-repeat: repeat-x;
}
.frame-border .edge-top {
top: 0;
}
.frame-border .edge-bottom {
bottom: 0;
transform: rotate(180deg);
}
.frame-border .edge-left,
.frame-border .edge-right {
top: 20px;
bottom: 20px;
width: 20px;
background-repeat: repeat-y;
}
.frame-border .edge-left {
left: 0;
}
.frame-border .edge-right {
right: 0;
transform: scaleX(-1);
}