diff --git a/static/css/praxis.css b/static/css/praxis.css index a791326..8c6e6d7 100644 --- a/static/css/praxis.css +++ b/static/css/praxis.css @@ -1926,3 +1926,17 @@ ul { } + +/* --------------------------------------------------------------- + Stage tweak: keep hero carousel indicator dots symmetric. + Bootstrap-3's default `.carousel-indicators .active { width:12px; + height:12px; margin:0 }` makes the active dot bigger and zero-margin + while inactive stays at 10px with 1px margin. With only two slides + the size + margin swap shifts the dots visibly on each slide change. + Lock all dots to the inactive geometry so only the fill toggles. + --------------------------------------------------------------- */ +.hero-slide .carousel-indicators .active { + width : 10px; + height : 10px; + margin : 1px; +}