@import "../global/globalCssVariables.scss"; .documentLinksButton-menu { width: 100%; height: 100%; position: relative; display: flex; align-content: center; justify-content: center; align-items: center; } .documentLinksButton-cont { min-width: 20; min-height: 20; position: absolute; } .documentLinksButton, .documentLinksButton-endLink, .documentLinksButton-startLink { height: 25px; width: 25px; position: absolute; border-radius: 50%; opacity: 0.9; pointer-events: auto; color: black; text-transform: uppercase; letter-spacing: 2px; font-size: 10px; transition: transform 0.2s; text-align: center; display: flex; justify-content: center; align-items: center; &:hover { // background: deepskyblue; // transform: scale(1.05); cursor: pointer; } } .documentLinksButton { background-color: black; font-weight: bold; &:hover { transform: scale(1.05); cursor: pointer; } } .documentLinksButton-endLink { border: $medium-blue 2px dashed; color: $medium-blue; &:hover { background: $light-gray; transform: scale(1.05); cursor: pointer; } } .documentLinksButton-startLink { background-color: $medium-blue; }