summaryrefslogtreecommitdiffstats
path: root/site/common/css/cssbox/cssbox.css
diff options
context:
space:
mode:
authorFrancis Rowe <info@gluglug.org.uk>2016-01-24 12:54:14 (EST)
committer Francis Rowe <info@gluglug.org.uk>2016-01-24 12:54:14 (EST)
commitbce99dbb6eb4ca9ffe44b5cb72bd781a4e738d03 (patch)
tree1d9c286ad92cb32db69bb03c6c5be2c058c72e0d /site/common/css/cssbox/cssbox.css
parent52afdbedbd8f2ef2433d57b97843fa38dfe1c403 (diff)
downloadlibreboot.org-bce99dbb6eb4ca9ffe44b5cb72bd781a4e738d03.zip
libreboot.org-bce99dbb6eb4ca9ffe44b5cb72bd781a4e738d03.tar.gz
libreboot.org-bce99dbb6eb4ca9ffe44b5cb72bd781a4e738d03.tar.bz2
add images of flash chips to the FAQ
Diffstat (limited to 'site/common/css/cssbox/cssbox.css')
-rw-r--r--site/common/css/cssbox/cssbox.css22
1 files changed, 22 insertions, 0 deletions
diff --git a/site/common/css/cssbox/cssbox.css b/site/common/css/cssbox/cssbox.css
new file mode 100644
index 0000000..9efc9f0
--- /dev/null
+++ b/site/common/css/cssbox/cssbox.css
@@ -0,0 +1,22 @@
+/* The work below, CSSBox, is released under the Creative Commons Zero 1.0 license
+ and is available on https://notabug.org/SylvieLorxu/CSSBox */
+img.cssbox_full {
+ position: fixed;
+ margin: 0;
+ padding: 0px;
+ top: 50%;
+ left: 50%;
+ margin-right: -50%;
+ transform: translate(-50%, -50%);
+ border: 5px solid black;
+ visibility: hidden;
+ opacity: 0;
+ transition: visibility 0s, opacity 0.5s linear;
+}
+
+img.cssbox_thumb:focus + img.cssbox_full {
+ visibility: visible;
+ opacity: 1;
+}
+/* The work above, CSSBox, is released under the Creative Commons Zero 1.0 license
+ and is available on https://notabug.org/SylvieLorxu/CSSBox */