diff options
author | Rasmus Luha <rasmus.luha@gmail.com> | 2022-11-05 23:13:57 +0200 |
---|---|---|
committer | Rasmus Luha <rasmus.luha@gmail.com> | 2022-11-05 23:13:57 +0200 |
commit | 1c973624785b77e97791be8c917c4c13b7418be0 (patch) | |
tree | d591c0bc571c03de69a128fd895cab22326c8a08 /rannak/kaart/css | |
parent | f2318deacde703df99fce50800b58f7e6e759e8b (diff) |
actual restructure, previuos commit premature
Diffstat (limited to 'rannak/kaart/css')
-rw-r--r-- | rannak/kaart/css/kaart.css | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/rannak/kaart/css/kaart.css b/rannak/kaart/css/kaart.css new file mode 100644 index 0000000..60bb1f9 --- /dev/null +++ b/rannak/kaart/css/kaart.css @@ -0,0 +1,31 @@ +svg path{ + fill: #00394f; + stroke: #eee !important; + stroke-width: .25 !important; +} + +svg path:hover { + fill: #006284; + transition: 0.6s !important; + cursor: pointer !important; + +} + +.moveOn{ + display: inline-block; + border: none; + padding: 6px 12px; + margin-botton: 0; + font-size: 1rem; + font-weight: normal; + text-align: center; + cursor: pointer; + border-radius: 4px; + background-color: #4BB543; + color: white; +} + +button:disabled{ + opacity: 0.5; +} + |