1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- #forceTurnToTop {
- display: none;
- }
- #mainPage.mainmenu {
- & #statusLine , #statusLine , #rightWindow , #currentRoomTab , #fakeparserTab , #hyperlinksTab, #leftWindow, #bottomNoTurn{
- display: none;
- }
- & #forceTurnToTop {
- display: block
- }
- & #centerWindow {
- max-width: 100%;
- }
- & #currentTurnTab {
- padding-left: 15%;
- padding-right: 15%;
- padding-bottom: 2%;
- }
- &.mobile #currentTurnTab {
- padding-left: 0%;
- padding-right: 0%;
- }
- & p.choice {
- border: none;
- background: none;
- color: #000;
- font-weight: bold;
- text-align: center;
- padding: 0rem;
- margin: 0rem;
- margin-bottom: 0.1rem;
- margin-top: 0.1rem;
- &::before {
- color: #000;
- }
- &::after {
- content : " ";
- color: #000;
- }
- &:hover {
- &::before {
- content : "< ";
- color: #000;
- }
- &::after {
- content : " >";
- color: #000;
- }
- }
- &[data-shortcut]:hover {
- &::before {
- content : "< " attr(data-shortcut) ") ";
- color: #000;
- }
- &::after {
- content : " >";
- color: #000;
- }
- }
- }
- }
|