static/irclogs.css
changeset 46 73aef9705d6c
parent 45 e94ab812c0c8
child 47 2cceeb731950
equal deleted inserted replaced
45:e94ab812c0c8 46:73aef9705d6c
     1 /*
       
     2  * Global styles
       
     3  */
       
     4 body {
       
     5     padding: 0px;
       
     6     margin: 0px;
       
     7 
       
     8     background-color: #ffffff;
       
     9     color: #000000;
       
    10 }
       
    11 
       
    12 /*
       
    13  * Menu
       
    14  */
       
    15 #menu {
       
    16     padding: 0px;
       
    17     margin: 0px;
       
    18 }
       
    19 
       
    20 #menu ul {
       
    21     display: table;
       
    22     list-style-type: none;
       
    23 
       
    24     width: 100%;
       
    25 
       
    26     padding: 0px;
       
    27     margin: 0px;
       
    28     
       
    29     background-color: #f0f0f0;
       
    30     border-bottom: 1px dashed #a5a5a5;
       
    31 
       
    32     text-align: center;
       
    33     white-space: nowrap;
       
    34 }
       
    35 
       
    36 #menu li {
       
    37     display: table-cell;
       
    38 
       
    39     height: 1.5em;
       
    40 
       
    41     padding: 0px;
       
    42     margin: 0px;
       
    43 
       
    44     border-left: 1px solid #b0b0b0;
       
    45 
       
    46     font-weight: bold;
       
    47 }
       
    48 
       
    49 #menu li a,
       
    50 #menu li form {
       
    51     height: 1.5em;
       
    52 }
       
    53 
       
    54 #menu li:first {
       
    55     border-left: none;
       
    56 }
       
    57 
       
    58 #menu li a {
       
    59     display: block;
       
    60 
       
    61     padding: 6px;
       
    62     margin: 0px;
       
    63 
       
    64     height: 100%;
       
    65 
       
    66     color: #494949;
       
    67     text-decoration: none;
       
    68 }
       
    69 
       
    70 #menu li a:hover {
       
    71     background-color: #d0d0d0;
       
    72     text-decoration: none;
       
    73 }
       
    74 
       
    75 #menu form {
       
    76     display: block;
       
    77 
       
    78     padding: 0px;
       
    79     margin: 0px;
       
    80 }
       
    81 
       
    82 #menu form select,
       
    83 #menu form input {
       
    84     padding: 9px;
       
    85     margin: 0px;
       
    86 
       
    87     border: none;
       
    88     background-color: inherit;
       
    89 }
       
    90 
       
    91 #menu form input {
       
    92     cursor: pointer;
       
    93 }
       
    94 
       
    95 #menu form select:hover,
       
    96 #menu form input:hover {
       
    97     background-color: #d0d0d0;
       
    98 }
       
    99 
       
   100 #menu form option {
       
   101     background-color: auto;
       
   102 }
       
   103 
       
   104 /*
       
   105  * Content
       
   106  */
       
   107 div#content {
       
   108     padding: 25px;
       
   109 }
       
   110 
       
   111 /*
       
   112  * Footer
       
   113  */
       
   114 div#footer {
       
   115     width: 100%;
       
   116     padding: 10px 0px 10px;
       
   117     
       
   118     border-top: 1px dashed #a5a5a5;
       
   119 
       
   120     font-size: x-small;
       
   121     font-style: italic;
       
   122 }
       
   123 
       
   124 div#footer-left {
       
   125     float: left;
       
   126 }
       
   127 
       
   128 div#footer-right {
       
   129     float: right;
       
   130     text-align: right;
       
   131 }
       
   132 
       
   133 div#footer-center {
       
   134     text-align: center;
       
   135 }
       
   136 
       
   137