provision.css (720B)
1 @import url(/static/theme.css); 2 nav, 3 nav a, 4 nav span, 5 .navcontainer, 6 .demobar, 7 nav button, 8 .navbtn { 9 color: white; 10 background: DarkSlateGray; 11 } 12 13 nav a.active, 14 nav span.active, 15 .navbtn.active { 16 background-color: LightSlateGray; 17 } 18 19 nav a.active:hover, 20 nav span.active:hover, 21 .navbtn.active:hover, 22 nav a:hover, 23 nav button:hover, 24 nav span:hover, 25 .navbtn:hover { 26 background: SlateGray; 27 } 28 29 form { 30 padding: 1em; 31 background: SlateGray; 32 border-radius: 5px; 33 font-size: large; 34 } 35 36 form label { 37 color: white; 38 } 39 40 table { 41 background: SlateGray; 42 color: white; 43 border-radius: 5px; 44 } 45 46 table td,th { 47 padding: 0.40em; 48 } 49 table th { 50 text-align: right; 51 } 52 53 ol, ul { 54 line-height: 1.5em; 55 }