-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (46 loc) · 892 Bytes
/
style.css
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
html, body {
height: 100%;
}
ul {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
grid-auto-rows: 200px;
gap: 1rem;
}
iframe {
pointer-events: none;
display: block;
object-fit: cover;
width: 100%;
height: 100%;
border: 1px solid black;
box-shadow: 1px 3px 8px rgb(0 0 0 / 50%);
}
ul {
list-style: none;
}
.overlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: rgba(43, 41, 41, 0.861);
}
.overlay {
display: grid;
grid-template-columns: 80%;
grid-template-rows: 80%;
place-content: center;
overflow: hidden;
}
.overlay iframe {
pointer-events: all;
}
* {
box-sizing: content-box;
width: 100%;
width: 100%;
margin: 0;
padding: 0;
}