View source with raw comments or as raw
    1/* General ClioPatria page layout
    2*/
    3
    4.cliopatria .content
    5{ margin-top: 10px;
    6}
    7
    8.cliopatria a.logo
    9{ margin-right: 5px;
   10}
   11
   12.cliopatria a.logo img
   13{ height: 24px;
   14}
   15
   16.cliopatria a.logo img:hover
   17{ outline: 1px solid blue;
   18}
   19
   20.cliopatria address.footer
   21{ margin-top: 1ex;
   22  border-width: 1px 0 0 0;
   23  border-style: solid;
   24  border-color: #A0A0A0;
   25  font-size: smaller;
   26  text-align: right;
   27}
   28
   29.cliopatria address.footer img
   30{ padding-left: 5px;
   31  border: 0;
   32  height: 1.2em;
   33  vertical-align: top;
   34}
   35
   36div.messages, div.textbox
   37{ border-width: 1px;
   38  border-style: dotted;
   39  border-color: #A0A0A0;
   40  padding: 5px;
   41  margin-top: 2ex;
   42  margin-left: 5%;
   43  width: 90%;
   44  overflow-x: auto;
   45}
   46
   47div.messages pre
   48{ margin: 0px;
   49}
   50
   51.msg_informational
   52{ color: #007f00;
   53}
   54
   55.msg_warning
   56{ color: #ca0000;
   57}
   58
   59.msg_error
   60{ color: #ca0000;
   61  font-weight: bold;
   62}
   63
   64#smiley-thinking
   65{ float: left;
   66}
   67
   68p.footnote
   69{ font-size: smaller;
   70}
   71
   72option.change
   73{ color: red;
   74}
   75
   76.cliopatria h1
   77{ font-size: 140%;
   78  background-color: #b9daff;
   79}
   80
   81.cliopatria h2
   82{ font-size: 130%;
   83  background-color: #b9daff;
   84}
   85
   86.cliopatria h3
   87{ font-size: 110%;
   88  background-color: #b9daff;
   89}
   90
   91.cliopatria h4
   92{ font-size: 100%;
   93  background-color: #b9daff;
   94}
   95
   96.cliopatria dl
   97{ margin-left: 5%;
   98}
   99
  100.cliopatria dl dt
  101{ font-weight: bold;
  102}
  103
  104.cliopatria input.gaction
  105{ width: 7em;
  106}
  107
  108
  109		 /*******************************
  110		 *	       TABLES		*
  111		 *******************************/
  112
  113table.block
  114{ border-width: 0px;
  115  border-style: solid;
  116  border-collapse: collapse;
  117  margin-left: 1cm;
  118  margin-top: 1em;
  119}
  120
  121table.block tr.even th
  122{ background-color: #e0e0e0;
  123}
  124
  125table.block tr.skip th
  126{ color:white;
  127  background-color: blue;
  128  text-align: center;
  129  padding-top: 1cm;
  130  padding-bottom: 1cm;
  131}
  132
  133table.block td, table.block th
  134{ border-width: 0 1px 0 1px;
  135  border-style: solid;
  136  padding: 0 2px;
  137}
  138
  139table.block tr:last-child td,
  140table.block tr:last-child th
  141{ border-width: 0 1px 1px 1px;
  142}
  143
  144table.block tr:first-child td,
  145table.block tr:first-child th
  146{ border-width: 1px 1px 0px 1px;
  147}
  148
  149tr.even td
  150{ background-color: #e0e0e0;
  151}
  152
  153td.int
  154{ text-align:right;
  155  padding-right:5px;
  156}
  157
  158td.empty, td.int_c
  159{ text-align:center;
  160}
  161
  162table.block td.no-border
  163{ border-width: 0;
  164  border-color: #fff;
  165  background-color: transparent;
  166}
  167
  168tr.even td.buttons
  169{ background-color: #fff;
  170}
  171
  172table.block td.total
  173{ border-width: 1px 0 0 0;
  174  font-weight: bold;
  175}
  176
  177table.block th, tr.header th
  178{ background:  url("../icons/th.png") left top;
  179  border: 1px solid #444;
  180}
  181
  182table.block th.total
  183{ text-align: right;
  184  padding-right: 7px;
  185  border-width: 0 1px 0 1px;
  186  border-style: solid;
  187  color:black;
  188  background: transparent;
  189}
  190
  191table.block a.resort
  192{ color: #000;
  193  text-decoration: none;
  194}
  195
  196table.block a.resort:hover
  197{ color: #00f;
  198  text-decoration: underline;
  199}
  200
  201table.block a.sorted
  202{ color: #000;
  203  text-decoration: underline;
  204}
  205
  206table.block th.p_name
  207{ text-align: right;
  208  background: transparent;
  209  border-width: 0 1px 0 1px;
  210}
  211
  212table.form
  213{ border-width: 0px;
  214  margin-left: 1cm;
  215}
  216
  217table.form th.label
  218{ text-align: right;
  219  padding: 0 3px;
  220}
  221
  222table td.file-time
  223{ text-align: right;
  224}
  225
  226		 /*******************************
  227		 *	   AUTO-COMPLETE	*
  228		 *******************************/
  229
  230span.acmatch
  231{ background-color: #bbf;
  232}
  233
  234div.ac_input .yui-ac-content
  235{ max-height:30em;
  236  overflow:auto;
  237  overflow-x:hidden; /* set scrolling */
  238  _height:30em; /* ie6 */
  239}
  240
  241span.ac-builtin
  242{ color: blue;
  243}
  244
  245span.ac-module
  246{ color: #888;
  247}
  248
  249span.ac-exported
  250{ color: dark-green;
  251}
  252
  253span.ac-private
  254{ color: red;
  255}
  256
  257#search_form
  258{ float: right;
  259}
  260
  261		 /*******************************
  262		 *	       LOGIN		*
  263		 *******************************/
  264
  265div.rdfql-login
  266{ margin-bottom: 2em;
  267}
  268
  269div.local-login, div.openid-login
  270{ margin-top: 3em;
  271  padding: 5px;
  272  border-style: dashed;
  273  border-width: 1px;
  274}
  275
  276div.local-login form
  277{ margin-top: 1em;
  278  margin-left: 5%;
  279}
  280
  281
  282		 /*******************************
  283		 *	     QUERY FORM		*
  284		 *******************************/
  285
  286form.query
  287{ margin-top: 4ex;
  288}
  289
  290form.query h3
  291{ padding-left: 5%;
  292  background-color: #b9daff;
  293}
  294
  295form.query td.qnostore
  296{ text-align: right;
  297  color: #aaa;
  298}
  299
  300table.query
  301{ margin-top: 1ex;
  302  margin-left: 5%;
  303  width: 90%;
  304}
  305
  306table.query textarea
  307{ width: 100%;
  308  height: 30ex;
  309}
  310
  311table.query span.label
  312{ font-size: smaller;
  313}
  314
  315
  316		 /*******************************
  317		 *	       LINKS		*
  318		 *******************************/
  319
  320a.img img
  321{ border-width: 0px;
  322}
  323
  324img.in-text
  325{ height: 1em;
  326}