diff options
author | AUTOMATIC <16777216c@gmail.com> | 2022-09-17 12:39:30 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2022-09-17 12:39:30 +0000 |
commit | 77dcb21688a121e4b9f93cd614546daad90f5a6c (patch) | |
tree | 272dd43fc3c71e7281d1879035caab60331a709f /style.css | |
parent | 2f18823e69ec1dd7622f652561e197a576dc3b80 (diff) | |
parent | d94b41472e0e799ab0059fd711f52f1fba954be6 (diff) | |
download | stable-diffusion-webui-gfx803-77dcb21688a121e4b9f93cd614546daad90f5a6c.tar.gz stable-diffusion-webui-gfx803-77dcb21688a121e4b9f93cd614546daad90f5a6c.tar.bz2 stable-diffusion-webui-gfx803-77dcb21688a121e4b9f93cd614546daad90f5a6c.zip |
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 37 |
1 files changed, 37 insertions, 0 deletions
@@ -196,3 +196,40 @@ input[type="range"]{ border-radius: 8px;
}
+#lightboxModal{
+ display: none;
+ position: fixed;
+ z-index: 900;
+ padding-top: 100px;
+ left: 0;
+ top: 0;
+ width: 100%;
+ height: 100%;
+ overflow: auto;
+ background-color: rgba(20, 20, 20, 0.95);
+}
+
+.modalClose {
+ color: white;
+ position: absolute;
+ top: 10px;
+ right: 25px;
+ font-size: 35px;
+ font-weight: bold;
+}
+
+.modalClose:hover,
+.modalClose:focus {
+ color: #999;
+ text-decoration: none;
+ cursor: pointer;
+}
+
+#modalImage {
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+ margin-top: auto;
+ width: auto;
+}
+
|