From 32a56ed55105a2e4172eadefc58e6346dcea78f4 Mon Sep 17 00:00:00 2001 From: Alexey Stepanov Date: Thu, 26 Sep 2024 12:07:37 +0500 Subject: update --- examples/styles.css | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 examples/styles.css (limited to 'examples/styles.css') diff --git a/examples/styles.css b/examples/styles.css new file mode 100644 index 0000000..1838701 --- /dev/null +++ b/examples/styles.css @@ -0,0 +1,59 @@ +/* source: https://github.com/nwg-piotr/nwg-dock/tree/main/config */ + +window { + border-width: 3px; + border-style: solid; + border-radius: 10px; +} + +#box { + /* Define attributes of the box surrounding icons here */ + padding: 5px; +} + +button, +image { + background: none; + border-style: none; + box-shadow: none; +} + +button { + padding: 4px; + margin: 0 4px; + font-size: 12px; +} + +button:hover { + border-radius: 4px; +} + +button:focus { + box-shadow: 0 0 2px; +} + +/* +* +* name: 3024 +* author: Jan T. Sott (http://github.com/idleberg) +* slug: 3024 +* slug-underscored: 3024 +* system: base16 +* variant: dark +* is-dark-variant: true +* +*/ + +window { + background-color: #090300; + border-color: #01a0e4; +} + +button, +image { + color: #807d7c; +} + +button:hover { + background-color: rgba(247, 247, 247, 0.4); +} -- cgit