12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- @CHARSET "UTF-8";
- /* Make the admin_menu font more readable */
- #admin-menu {
- font-size: 12px;
- }
- body {
- color: black;
- background-color: white;
- }
- div.geshifilter {
- border: solid thin gray50;
- background-color: #fffff8;
- padding: 0.5em 0.5em;
- box-shadow: 0.2em 0.2em 2em grey;
- width: 60em;
- }
- div.geshifilter:hover {
- width: 100%;
- }
- code {
- border: none;
- background-color: #fffff0;
- padding: 0.2em 0.5em;
- text-shadow: 0.2em 0.2em 2em grey;
- }
- q {
- font-style: italic;
- }
- q::before {
- content: open-quote;
- }
- q::after {
- content: close-quote;
- }
- /* A flashy color for content-top blocks for emergency situations */
- #contenttop {
- min-height: 1em;
- background: #fff url(images/bg-navigation.png) repeat 50% 100%;
- border: 1px solid orange ;
- margin-bottom: 1em;
- padding: 1em;
- }
- /* Spread wider on wide screens */
- #wrapper #container {
- margin: 0 auto;
- padding: 0 20px;
- max-width: 2048px;
- }
- /* Push logo a bit further down to better align it with the H1 */
- #wrapper #container #header h1 img {
- padding-top: 16px;
- padding-right: 20px; /* LTR */
- float: left; /* LTR */
- }
|