Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
/* [[Category:CSS from Wikimedia]] */
.aab-bar {                          /* Horizontal orientation */
    display:inline-block; 
    border:thin solid darkgray; 
    width:64px;
    height:17px; 
    color:white; 
    font-size:85%; 
    padding:0 0 1px 2px;
    text-shadow: 1px 1px 1px black; /* dark outline for low lengths; for browsers that don't support text-stroke */
}

.aab-bar-vert {                     /* Vertical orientation */
    display:inline-flex; 
    border:thin solid darkgray; 
    width:32px;
    height:96px; 
    color:white;
    font-size:85%; 
    padding:0 0 1px 2px;
    text-shadow: 1px 1px 1px black; /* white outline for huge lengths */
	flex-direction: column;
	justify-content: flex-end;
	vertical-align: bottom;
}