web reimplementation of Sigmar's Garden https://bits.ondrovo.com/sigmar/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sigmar/style.css

73 lines
1.3 KiB

5 years ago
*,*:before,*:after {
box-sizing: border-box;
}
html,body {
background:black;
color:white;
}
#wrap {
position: absolute;
left: 0; top: 0; right: 0; bottom: 0;
overflow: hidden;
}
5 years ago
#board {
height: 100%;
width: 100%;
5 years ago
}
.disabled .orb {
opacity: 0.6;
}
.highlight-salt .element-salt .orb-fill,
.highlight-air .element-air .orb-fill,
.highlight-fire .element-fire .orb-fill,
.highlight-water .element-water .orb-fill,
.highlight-earth .element-earth .orb-fill,
.highlight-mercury .element-mercury .orb-fill,
.highlight-lead .element-lead .orb-fill,
.highlight-tin .element-tin .orb-fill,
.highlight-iron .element-iron .orb-fill,
.highlight-copper .element-copper .orb-fill,
.highlight-silver .element-silver .orb-fill,
.highlight-gold .element-gold .orb-fill,
.highlight-vitae .element-vitae .orb-fill,
.highlight-mors .element-mors .orb-fill {
stroke: yellow;
stroke-width: 7px;
}
.orb.disabled .orb-glow,
.orb.disabled .orb-shadow,
.orb.disabled:hover .orb-glow,
.orb.disabled:hover .orb-shadow {
opacity: 0;
}
.orb {
cursor: pointer;
}
.orb.disabled {
cursor: default;
opacity: 0.6;
}
.orb-glow,
.orb-shadow {
transition: opacity linear 0.2s;
}
.orb.selected .orb-glow,
.orb:hover .orb-glow {
opacity: 1;
}
.orb.selected .orb-shadow,
.orb:hover .orb-shadow {
opacity: 0;
}