aboutsummaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorache <ache@ache.one>2018-01-02 14:48:41 +0100
committerache <ache@ache.one>2018-01-02 14:50:06 +0100
commit6974a8c306c2d9e2453a3db35f5053066cbb27ae (patch)
treece3b3ed70a25de0235b24f8bea1c4df85844b292 /public
parenttree and view classes (diff)
Raw button implementation
Diffstat (limited to 'public')
-rw-r--r--public/css/style.css37
1 files changed, 37 insertions, 0 deletions
diff --git a/public/css/style.css b/public/css/style.css
index e70a940..4717cd6 100644
--- a/public/css/style.css
+++ b/public/css/style.css
@@ -110,4 +110,41 @@ kbd {
text-shadow: 0 1px 0 #fff;
color: #5e551f;
}
+.view {
+ position: relative;
+}
+.raw_button {
+ position: absolute;
+ top:10px;
+ right:0;
+
+ margin : 0;
+ padding : 0;
+ border : 0;
+ background : transparent;
+ font-family : inherit;
+ font-size : 1em;
+ cursor : pointer;
+}
+.raw_button > div {
+ width : 40px;
+ height : 24px;
+ background : rgb(192,192,192) url('image.png') no-repeat center center;
+ line-height : 24px;
+ border : 1px solid rgba(27, 31, 35, 0.2);
+ border-radius : 3px;
+ font-size: 12px;
+
+ color: #24292e;
+ background-color: #eff3f6;
+ background-image: linear-gradient(-180deg, #fafbfc 0%, #eff3f6 90%);
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
+}
+.raw_button > div > div {
+ font-weight: bold;
+}
+
+.no-style {
+ text-decoration: none;
+}