From 80603494574a93527505c0d03efddbf98f28dfad Mon Sep 17 00:00:00 2001 From: StrugglingDoge Date: Tue, 30 Apr 2019 21:12:37 -0400 Subject: Initial Commit --- depictions/style.css | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 depictions/style.css (limited to 'depictions/style.css') 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; +} -- cgit v1.2.3