aboutsummaryrefslogtreecommitdiff
path: root/depictions/style.css
diff options
context:
space:
mode:
authorStrugglingDoge <cbckelley@yahoo.com>2019-04-30 21:12:37 -0400
committerStrugglingDoge <cbckelley@yahoo.com>2019-04-30 21:12:37 -0400
commit80603494574a93527505c0d03efddbf98f28dfad (patch)
tree44f1961479909fc8230946d072962dae33b8b94b /depictions/style.css
Initial Commit
Diffstat (limited to 'depictions/style.css')
-rw-r--r--depictions/style.css30
1 files changed, 30 insertions, 0 deletions
diff --git a/depictions/style.css b/depictions/style.css
new file mode 100644
index 0000000..0bb6513
--- /dev/null
+++ b/depictions/style.css
@@ -0,0 +1,30 @@
+.disable-hover {
+ pointer-events: none;
+}
+
+.link-item {
+ list-style-type: none;
+ padding: 17px 15px;
+ display: block;
+ color: #337ab7 !important;
+ text-align: left;
+}
+
+.link-item:hover {
+ border: 1px solid #ddd;
+ background-color: #f5f5f5;
+}
+
+html.can-touch .link-item:hover{ /* disable hover effect when input is touch */
+ background-color: #fff;
+}
+
+html.can-touch .link-item:active{ /* disable hover effect when input is touch */
+ background-color: #f5f5f5;
+}
+
+.fa {
+ font-size: 16px;
+ margin-left: 5px;
+ margin-right: 10px;
+}