]> git.localhorst.tv Git - alttp.git/blob - resources/sass/doors.scss
61eee2e8b4e18f2f1ba05517f4516abfb56f62e4
[alttp.git] / resources / sass / doors.scss
1 .doors-tracker {
2         .cell {
3                 width: 3rem;
4                 height: 3rem;
5                 margin: 0.25rem;
6                 border-radius: 0.25rem;
7                 display: flex;
8                 align-items: center;
9                 justify-content: space-around;
10                 user-select: none;
11                 &.off {
12                         opacity: .3;
13                 }
14                 &.dungeon {
15                         background: #b3700b;
16                 }
17                 &.dungeon-item {
18                         background: #0571b0;
19                 }
20                 &.keys {
21                         background: #2E8B57;
22                         font-size: 140%;
23                         text-shadow: 0 0.1rem 0.1rem black;
24                 }
25                 &.item {
26                         background: #ca0020;
27                 }
28         }
29 }