-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (87 loc) · 1.97 KB
/
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
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
#lightboxModal {
overflow: hidden;
backdrop-filter: blur(10px);
background-color: rgba(0, 0, 0, 0.8);
transition: opacity 0.3s ease;
opacity: 0;
transform: translate(0px, 0px) scale(1);
}
#lightboxModal > img.modalImageFullscreen {
width: auto;
height: auto;
max-width: 100%;
max-height: 100%;
cursor: auto;
background-color: var(--input-background-fill);
transition: transform 0.3s ease;
transform: translate(0px, 0px) scale(0);
}
#lightboxModal > img:focus {
outline: none;
}
.modalControls {
pointer-events: none;
transition: 0.3s ease;
}
.modalControls:hover {
background-color: transparent !important;
}
.modalControls span {
display: flex;
z-index: 9999;
color: var(--button-secondary-text-color) !important;
pointer-events: auto;
filter: brightness(1);
text-shadow: 0 0 7px black !important;
position: absolute !important;
width: auto !important;
transition: 0.3s ease;
}
.modalControls span:hover {
filter: brightness(1);
transform: scale(1.3);
color: var(--button-secondary-text-color-hover) !important;
}
.modalZoom, .modalSave, .modalTileImage {
display: none !important;
}
.modalClose {
top: 15px;
right: 15px;
}
.modalToggleLivePreview {
top: 14px;
left: 70px;
}
.downloadImage {
top: 15px;
left: 15px;
}
.modalPrev {
padding-left: 5px;
padding-right: 0;
}
.modalNext {
padding-left: 0;
padding-right: 5px;
}
.modalPrev, .modalNext {
z-index: 9999;
margin-top: -20px;
color: var(--button-secondary-text-color) !important;
font-size: 30px !important;
transition: 0.3s ease !important;
padding-top: 0;
padding-bottom: 0;
}
.modalPrev:hover, .modalNext:hover {
filter: brightness(1);
background-color: transparent !important;
background: transparent !important;
transform: scale(1.4);
color: var(--button-secondary-text-color-hover) !important;
}
.downloadImage svg, .modalClose svg, .modalToggleLivePreview svg,
.modalPrev svg, .modalNext svg {
filter: drop-shadow(0 0 3px #000);
}