2014-01-27 21:52:30 +01:00
|
|
|
/* Welcome to Compass.
|
|
|
|
* In this file you should write your main styles. (or centralize your imports)
|
|
|
|
* Import this file using the following HTML or equivalent:
|
|
|
|
* <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
|
|
|
|
|
|
|
|
$bg: #eee;
|
|
|
|
$text: #444;
|
|
|
|
$strong: #111;
|
|
|
|
$dim: #999;
|
|
|
|
$links: #55f;
|
|
|
|
$rule: #999;
|
|
|
|
|
|
|
|
$width: 800px;
|
|
|
|
|
|
|
|
@import "compass/reset";
|
|
|
|
@import "compass/css3";
|
|
|
|
|
|
|
|
@include font-face("OpenSans", font-files("OpenSans.woff"));
|
|
|
|
@include font-face("OpenSansLight", font-files("OpenSans-Light.woff"));
|
|
|
|
@include font-face("OpenSansItalic", font-files("OpenSans-Italic.woff"));
|
|
|
|
|
|
|
|
html, body { height: 100%; text-align: justify;
|
|
|
|
background-color: $bg; color: $text;
|
|
|
|
font-family: "OpenSans", sans;
|
|
|
|
line-height: 1.4em; }
|
|
|
|
|
|
|
|
a { text-decoration: none; color: $links; }
|
|
|
|
a:hover { text-decoration: underline; }
|
|
|
|
|
|
|
|
hr { height: 1px; border: none; background-color: $rule; margin-top: 1em; }
|
|
|
|
|
|
|
|
section h1 { font-size: 150%; border-left: 0.25em solid $links;
|
|
|
|
border-radius: 3px; padding-left: 0.3em; margin-left: -0.8em; }
|
|
|
|
|
|
|
|
section h2 { font-size: 120%; font-weight: bold; }
|
|
|
|
|
|
|
|
h1, h2, h3, h4, h5 { margin: 0.7em 0 0.5em 0; }
|
|
|
|
|
|
|
|
header { text-align: center; font-family: "OpenSansLight", sans;
|
|
|
|
line-height: 1.3em; font-weight: 400; font-size: 1.2em;
|
2014-01-28 08:43:25 +01:00
|
|
|
padding-top: 1em; }
|
2014-01-27 21:52:30 +01:00
|
|
|
|
|
|
|
header h1 { font-size: 1.5em; margin:0 0 0.3em 0; }
|
|
|
|
|
|
|
|
header a { color: $text; }
|
|
|
|
|
|
|
|
nav { text-align: center; font-size: 120%; margin: 1em 0; }
|
|
|
|
nav ul li { display: inline; margin: 0; clear: both; }
|
|
|
|
|
|
|
|
footer { font-size: 75%; padding-bottom: 175px; }
|
|
|
|
|
|
|
|
em { font-family: OpenSansItalic; }
|
|
|
|
|
|
|
|
table { width: 100%; }
|
|
|
|
thead { color: $dim; }
|
|
|
|
th, td { padding: 0.3em; }
|
|
|
|
tr { border-bottom: 1px solid $dim; }
|
|
|
|
tbody tr:hover { border-bottom: 1px solid $strong; color: $strong; }
|
|
|
|
|
2014-01-28 13:43:46 +01:00
|
|
|
.publi_table td:nth-child(1) { width: 30%; }
|
|
|
|
.publi_table td:nth-child(2) { width: 60%; }
|
|
|
|
.publi_table td:nth-child(3) { width: 10%; }
|
|
|
|
|
2014-01-27 21:52:30 +01:00
|
|
|
ul { list-style-image: url('../images/bullet_dark.png'); }
|
|
|
|
li { margin-left: 1em; }
|
|
|
|
|
|
|
|
.float-left { float: left; }
|
|
|
|
.right, .float-right { float: right; }
|
|
|
|
.clear { clear: both; }
|
|
|
|
|
|
|
|
.switcher { float: left; }
|
|
|
|
|
|
|
|
.credits { color: $dim; }
|
|
|
|
|
|
|
|
#wrapper { max-width: $width; margin: auto; }
|
|
|
|
#outter-wrapper { width: 100%; height: auto; min-height: 100%; position: relative; }
|
|
|
|
#foot_image { height: 150px; background-image: url('../images/antennes.png');
|
|
|
|
position: absolute; bottom: 0; width: 100%; }
|
|
|
|
|
|
|
|
@media (max-width: $width) {
|
|
|
|
#outter-wrapper { width: 100%; }
|
|
|
|
header h1 { font-size: 1.2em; }
|
|
|
|
header { font-size: 1em; }
|
|
|
|
body { padding: 0 1em; }
|
|
|
|
#foot_image { display: none; }
|
|
|
|
footer { display: none; }
|
|
|
|
}
|