summaryrefslogtreecommitdiff
path: root/fbin/static/css/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'fbin/static/css/style.css')
-rw-r--r--fbin/static/css/style.css18
1 files changed, 18 insertions, 0 deletions
diff --git a/fbin/static/css/style.css b/fbin/static/css/style.css
new file mode 100644
index 0000000..8989c22
--- /dev/null
+++ b/fbin/static/css/style.css
@@ -0,0 +1,18 @@
+.image-thumbnail {
+ display: inline-block;
+ vertical-align: top;
+ width: 128px;
+ height: 128px;
+ margin: .5em;
+}
+.glyphicon.spinner {
+ animation: glyphicon-spin-r 3s infinite linear;
+}
+@keyframes glyphicon-spin-r {
+ 0% {
+ transform: rotate(0deg);
+ }
+ 100% {
+ transform: rotate(359deg);
+ }
+}