-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglslGallery.css
88 lines (88 loc) · 1.69 KB
/
glslGallery.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
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
@charset 'utf-8';
html {
font-size: 16px;
}
* {
box-shadow: inset 0 0 4px pink;
}
.glslGallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(min(10rem, 100%), 1fr));
gap: 1rem;
}
.glslGallery > div {
height: 10rem;
}
.glslGallery_item {
position: relative;
display: inline-block;
width: 100%;
}
.glslGallery_thumb {
max-width: 100%;
}
.glslGallery_credits {
position: absolute;
bottom: 5px;
left: 5px;
background: rgba(0, 0, 0, 0.5);
padding: 5px;
padding-top: 2px;
padding-bottom: 2px;
margin: 0;
z-index: 104;
}
.glslGallery_label {
color: white;
font-family: Helvetica, Arial, sans-serif;
text-decoration: none;
line-height: 0;
z-index: 104;
}
.glslGallery_title {
font-size: 14px;
font-weight: 600;
}
.glslGallery_author {
font-size: 10px;
font-style: italic;
font-weight: 100;
}
.glslGallery_lesson {
color: #a5ff8c;
font-size: 10px;
font-style: italic;
font-weight: 100;
}
.glslGallery_canvas {
position: absolute;
top: 0;
left: 0;
z-index: 103;
opacity: 1;
transition: opacity 0.5s ease-in;
max-width: 100%;
display: inline-block;
}
.glslGallery_openFrameIcon {
box-sizing: border-box;
position: absolute;
float: right;
right: 10px;
bottom: 10px;
padding: 5px;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
z-index: 105;
font-size: 20px;
color: black;
background-color: rgba(255, 255, 255, 0.5);
cursor: pointer;
font-family: Helvetica, Geneva, sans-serif;
font-size: 17px;
}
.glslGallery_openFrameIcon:hover {
color: #85ccc4;
}
/*# sourceMappingURL=glslGallery.css.map */