Blame website/html/default.css

Packit 9ff65e
/******************************************************************************/
Packit 9ff65e
/*  ocaml-fileutils: files and filenames common operations                    */
Packit 9ff65e
/*                                                                            */
Packit 9ff65e
/*  Copyright (C) 2003-2014, Sylvain Le Gall                                  */
Packit 9ff65e
/*                                                                            */
Packit 9ff65e
/*  This library is free software; you can redistribute it and/or modify it   */
Packit 9ff65e
/*  under the terms of the GNU Lesser General Public License as published by  */
Packit 9ff65e
/*  the Free Software Foundation; either version 2.1 of the License, or (at   */
Packit 9ff65e
/*  your option) any later version, with the OCaml static compilation         */
Packit 9ff65e
/*  exception.                                                                */
Packit 9ff65e
/*                                                                            */
Packit 9ff65e
/*  This library is distributed in the hope that it will be useful, but       */
Packit 9ff65e
/*  WITHOUT ANY WARRANTY; without even the implied warranty of                */
Packit 9ff65e
/*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the file         */
Packit 9ff65e
/*  COPYING for more details.                                                 */
Packit 9ff65e
/*                                                                            */
Packit 9ff65e
/*  You should have received a copy of the GNU Lesser General Public License  */
Packit 9ff65e
/*  along with this library; if not, write to the Free Software Foundation,   */
Packit 9ff65e
/*  Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA             */
Packit 9ff65e
/******************************************************************************/
Packit 9ff65e
Packit 9ff65e
/* General settings */
Packit 9ff65e
Packit 9ff65e
body 
Packit 9ff65e
{
Packit 9ff65e
  background: #E8F3F8;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#top
Packit 9ff65e
{
Packit 9ff65e
  margin-left: auto;
Packit 9ff65e
  margin-right: auto;
Packit 9ff65e
  width: 960px;
Packit 9ff65e
  margin-top: 10px;
Packit 9ff65e
  border-left:   solid 2px #A4BCC2;
Packit 9ff65e
  border-right:  solid 2px #A4BCC2;
Packit 9ff65e
  border-bottom: solid 2px #A4BCC2;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
h1 { color: #555; font-size: xx-large;}
Packit 9ff65e
h2 { color: #552; font-size; large;}
Packit 9ff65e
h3 { color: #662; font-size; medium;}
Packit 9ff65e
Packit 9ff65e
#content h1 a { color: #555; font-size: xx-large;}
Packit 9ff65e
#content h2 a { color: #552; font-size; large;}
Packit 9ff65e
#content h3 a { color: #662; font-size; medium;}
Packit 9ff65e
Packit 9ff65e
/* Header */
Packit 9ff65e
#header
Packit 9ff65e
{
Packit 9ff65e
  clear: both;
Packit 9ff65e
  position: relative;
Packit 9ff65e
  height: 85px;
Packit 9ff65e
	background: #A4BCC2;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#header h1.logo
Packit 9ff65e
{
Packit 9ff65e
  position: relative;
Packit 9ff65e
  float: left;
Packit 9ff65e
  padding-top: 0px;
Packit 9ff65e
  padding-left: 15px;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#header h1.logo a 
Packit 9ff65e
{
Packit 9ff65e
  text-decoration: none;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#header h1.logo img
Packit 9ff65e
{
Packit 9ff65e
  border: none;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#header .subtitle
Packit 9ff65e
{
Packit 9ff65e
  color:#FFFFFF;
Packit 9ff65e
  float:left;
Packit 9ff65e
  font-size:16pt;
Packit 9ff65e
  font-weight:bold;
Packit 9ff65e
  margin-top:34px;
Packit 9ff65e
	margin-left:10px;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
/* Menu */
Packit 9ff65e
#menu
Packit 9ff65e
{
Packit 9ff65e
  text-align: center;
Packit 9ff65e
  padding: 10px;
Packit 9ff65e
  background: #C2CBCE;
Packit 9ff65e
  border-top: solid 2px #A4BCC2;
Packit 9ff65e
  border-bottom: solid 2px #A4BCC2;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#menu a
Packit 9ff65e
{
Packit 9ff65e
  text-decoration: none;
Packit 9ff65e
  font-weight: bold;
Packit 9ff65e
  font-size: 110%;
Packit 9ff65e
  color: black;
Packit 9ff65e
  margin: 0;
Packit 9ff65e
  padding: 0;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#menu a:hover
Packit 9ff65e
{
Packit 9ff65e
  color: #81A8B8;
Packit 9ff65e
  border-bottom:1px dotted green;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#menu li
Packit 9ff65e
{
Packit 9ff65e
  display: inline;
Packit 9ff65e
  margin: 0;
Packit 9ff65e
  padding: 3em;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#menu ul
Packit 9ff65e
{
Packit 9ff65e
  list-style-type: none;
Packit 9ff65e
  margin: 0;
Packit 9ff65e
  padding: 0;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
/* Content */
Packit 9ff65e
Packit 9ff65e
#content #header {
Packit 9ff65e
  display: none;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#content
Packit 9ff65e
{
Packit 9ff65e
  padding: 2em;
Packit 9ff65e
  padding-top: 0.5em;
Packit 9ff65e
  background: #DBE6EC;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#content hr
Packit 9ff65e
{
Packit 9ff65e
  color: grey;
Packit 9ff65e
  width: 90%;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#content a
Packit 9ff65e
{
Packit 9ff65e
  color: #67a76d;
Packit 9ff65e
  text-decoration: none;
Packit 9ff65e
  font-weight: bold;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#content a:hover
Packit 9ff65e
{
Packit 9ff65e
  text-decoration: underline;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#content code
Packit 9ff65e
{
Packit 9ff65e
  font-family: monospace;
Packit 9ff65e
  color: #1e6694;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#content pre
Packit 9ff65e
{
Packit 9ff65e
  border-left-style: double;
Packit 9ff65e
  border-left-color: #1e6694;
Packit 9ff65e
  padding-left: 1em;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#video
Packit 9ff65e
{
Packit 9ff65e
	text-align: center;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#download-latest 
Packit 9ff65e
{
Packit 9ff65e
  text-align: center;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#download-latest a 
Packit 9ff65e
{
Packit 9ff65e
  font-weight: bold;
Packit 9ff65e
  font-size: x-large;
Packit 9ff65e
  padding-left: 24px;
Packit 9ff65e
  background: url(download.png) no-repeat;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#news .subtitle
Packit 9ff65e
{
Packit 9ff65e
  font-style: italic;
Packit 9ff65e
  font-size: 80%;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
/* Footer */
Packit 9ff65e
Packit 9ff65e
#footer {
Packit 9ff65e
  clear: both;
Packit 9ff65e
  position: relative;
Packit 9ff65e
  color: black;
Packit 9ff65e
  font-size: 70%;
Packit 9ff65e
  padding: 5px;
Packit 9ff65e
  background: #C2CBCE;
Packit 9ff65e
  border-top: solid 2px #A4BCC2;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#footer .copyright {
Packit 9ff65e
  position: relative;
Packit 9ff65e
  width: 33%;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#footer .lastmodified {
Packit 9ff65e
  position: relative;
Packit 9ff65e
  float: right;
Packit 9ff65e
  width: 33%;
Packit 9ff65e
  text-align: right;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#footer .badge {
Packit 9ff65e
  position: relative;
Packit 9ff65e
  float: right;
Packit 9ff65e
  width: 33%;
Packit 9ff65e
  text-align: center;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e
#footer .copyright a {
Packit 9ff65e
	text-decoration: none;
Packit 9ff65e
	color: black;
Packit 9ff65e
}
Packit 9ff65e
Packit 9ff65e