/* Global styles applied to all pages with any base template. * * Note to future self: * colors and things like that should **never** go here, * only formatting/layout rules and reusable classes * needed to fix HTML quirks. */ .Center { Text-Align: Center; } .Inline { Display: Inline; } .InlineBlock { Display: Inline-Block; } .NoCol { Color: Transparent !Important; } .NoDisplay, .DispNone { Display: None; } .DispBlock { Display: Block; } .NoWrap { White-Space: NoWrap; } .NoSelect { User-Select: none; -ms-user-select: none; -moz-user-select: none; -khtml-user-select: none; -webkit-user-select: none; -webkit-touch-callout: none; } .i1em { Max-Width: 1em; Max-Height: 1em; } /* Set Headings as Inline when inside Details Summaries and List Items */ :Where(Summary, Li) > :Where(H1, H2, H3, H4, H5, H6) { Display: Inline; } /* Animazioni per le desinenze */ .BlinkA { Animation: BlinkerA 0.25s Step-Start Infinite; } @Keyframes BlinkerA { 0% {Position: Absolute; Visibility: Hidden;} 50% {Position: Static; Visibility: Visible;} 100% {Position: Absolute; Visibility: Hidden;} } .BlinkO { Animation: BlinkerO 0.25s Step-Start Infinite; } @Keyframes BlinkerO { 0% {Position: Static; Visibility: Visible;} 50% {Position: Absolute; Visibility: Hidden;} 100% {Position: Static; Visibility: Visible;} }