This repository has been archived on 2026-04-30. You can view files and clone it, but cannot push or open issues or pull requests.
huegasm/mobile/app/styles/light-group.scss
2016-10-18 18:01:35 -07:00

49 lines
767 B
SCSS

.light-group {
margin: 0 auto;
text-align: center;
div {
display: inline-block;
}
}
.light-inactive {
position: relative;
}
.light-inactive::before {
font-weight: bold;
position: absolute;
content: "X";
top: -10px;
left: 5px;
font-size: 40px;
color: rgba(255, 0, 0, 0.37);
font-family: cursive;
}
.horizontal-light-group {
.light-inactive::before {
top: -9px;
left: 6px;
}
}
.light-active {
img {
transition-duration: 0.3s;
transition-property: transform;
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
img:hover {
-webkit-transform: scale(1.2);
transform: scale(1.2);
}
}
.ember-modal-overlay.translucent {
background-color: rgba(0, 0, 0, 0.50);
}
.remove-button {
margin: 10px 0 10px 60px;
}