2017-08-19 01:32:26 +02: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" /> */
|
|
|
|
@import url("https://fonts.googleapis.com/css?family=Carter+One|Source+Sans+Pro:300,300i,700");
|
|
|
|
/* line 5, ../../../../../../../../../../var/lib/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
|
|
|
html, body, div, span, applet, object, iframe,
|
|
|
|
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
|
|
|
a, abbr, acronym, address, big, cite, code,
|
|
|
|
del, dfn, em, img, ins, kbd, q, s, samp,
|
|
|
|
small, strike, strong, sub, sup, tt, var,
|
|
|
|
b, u, i, center,
|
|
|
|
dl, dt, dd, ol, ul, li,
|
|
|
|
fieldset, form, label, legend,
|
|
|
|
table, caption, tbody, tfoot, thead, tr, th, td,
|
|
|
|
article, aside, canvas, details, embed,
|
|
|
|
figure, figcaption, footer, header, hgroup,
|
|
|
|
menu, nav, output, ruby, section, summary,
|
|
|
|
time, mark, audio, video {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
font: inherit;
|
|
|
|
font-size: 100%;
|
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* line 22, ../../../../../../../../../../var/lib/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
|
|
|
html {
|
|
|
|
line-height: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* line 24, ../../../../../../../../../../var/lib/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
|
|
|
ol, ul {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* line 26, ../../../../../../../../../../var/lib/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
|
|
|
table {
|
|
|
|
border-collapse: collapse;
|
|
|
|
border-spacing: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* line 28, ../../../../../../../../../../var/lib/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
|
|
|
caption, th, td {
|
|
|
|
text-align: left;
|
|
|
|
font-weight: normal;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* line 30, ../../../../../../../../../../var/lib/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
|
|
|
q, blockquote {
|
|
|
|
quotes: none;
|
|
|
|
}
|
|
|
|
/* line 103, ../../../../../../../../../../var/lib/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
|
|
|
q:before, q:after, blockquote:before, blockquote:after {
|
|
|
|
content: "";
|
|
|
|
content: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* line 32, ../../../../../../../../../../var/lib/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
|
|
|
a img {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* line 116, ../../../../../../../../../../var/lib/gems/2.3.0/gems/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
|
|
|
|
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* line 12, ../sass/screen.scss */
|
2017-08-20 00:39:19 +02:00
|
|
|
*, *:after, *:before {
|
2017-08-22 00:58:18 +02:00
|
|
|
box-sizing: border-box;
|
2017-08-20 00:39:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* line 16, ../sass/screen.scss */
|
2017-08-19 01:32:26 +02:00
|
|
|
body {
|
2017-08-20 00:39:19 +02:00
|
|
|
background: #ffcc6f;
|
2017-08-19 01:32:26 +02:00
|
|
|
font: 17px "Source Sans Pro", "sans-serif";
|
|
|
|
}
|
|
|
|
|
2017-08-20 00:39:19 +02:00
|
|
|
/* line 21, ../sass/screen.scss */
|
2017-08-19 01:32:26 +02:00
|
|
|
header {
|
2017-08-20 00:39:19 +02:00
|
|
|
background: #30355a;
|
2017-08-19 01:32:26 +02:00
|
|
|
}
|
|
|
|
|
2017-08-20 00:39:19 +02:00
|
|
|
/* line 25, ../sass/screen.scss */
|
2017-08-19 01:32:26 +02:00
|
|
|
h1, h2 {
|
|
|
|
font-family: "Carter One";
|
|
|
|
}
|
|
|
|
|
2017-08-20 00:39:19 +02:00
|
|
|
/* line 29, ../sass/screen.scss */
|
2017-08-19 01:32:26 +02:00
|
|
|
h1 {
|
|
|
|
font-size: 2.3em;
|
|
|
|
}
|
|
|
|
|
2017-08-20 00:39:19 +02:00
|
|
|
/* line 33, ../sass/screen.scss */
|
|
|
|
h2 {
|
|
|
|
font-size: 1.6em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* line 37, ../sass/screen.scss */
|
2017-08-19 01:32:26 +02:00
|
|
|
a {
|
2017-08-20 00:39:19 +02:00
|
|
|
color: #f9752b;
|
2017-08-19 01:32:26 +02:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2017-08-20 00:39:19 +02:00
|
|
|
/* line 43, ../sass/screen.scss */
|
|
|
|
header section {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: stretch;
|
|
|
|
}
|
|
|
|
/* line 49, ../sass/screen.scss */
|
|
|
|
header section.bottom-menu {
|
|
|
|
justify-content: space-around;
|
|
|
|
text-align: center;
|
|
|
|
background: #47395e;
|
|
|
|
}
|
|
|
|
/* line 55, ../sass/screen.scss */
|
|
|
|
header h1 {
|
|
|
|
padding: 0 15px;
|
|
|
|
}
|
|
|
|
/* line 59, ../sass/screen.scss */
|
2017-08-19 01:32:26 +02:00
|
|
|
header nav ul {
|
|
|
|
display: flex;
|
|
|
|
}
|
2017-08-20 00:39:19 +02:00
|
|
|
/* line 61, ../sass/screen.scss */
|
2017-08-19 01:32:26 +02:00
|
|
|
header nav ul li {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2017-08-20 00:39:19 +02:00
|
|
|
/* line 63, ../sass/screen.scss */
|
2017-08-19 01:32:26 +02:00
|
|
|
header nav ul li > * {
|
|
|
|
display: block;
|
|
|
|
padding: 10px 15px;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2017-08-20 00:39:19 +02:00
|
|
|
/* line 68, ../sass/screen.scss */
|
2017-08-19 01:32:26 +02:00
|
|
|
header nav ul li > *:hover {
|
2017-08-20 00:39:19 +02:00
|
|
|
background: #1e2139;
|
2017-08-19 01:32:26 +02:00
|
|
|
}
|
2017-08-20 00:39:19 +02:00
|
|
|
|
|
|
|
/* line 77, ../sass/screen.scss */
|
|
|
|
.container {
|
|
|
|
max-width: 1000px;
|
|
|
|
margin: 0 auto;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
/* line 82, ../sass/screen.scss */
|
|
|
|
.container .aside-wrap {
|
|
|
|
position: absolute;
|
|
|
|
top: 30px;
|
|
|
|
height: 100%;
|
|
|
|
width: 250px;
|
|
|
|
}
|
|
|
|
/* line 88, ../sass/screen.scss */
|
|
|
|
.container .aside-wrap .aside {
|
|
|
|
position: fixed;
|
|
|
|
position: sticky;
|
|
|
|
top: 5px;
|
2017-08-19 01:32:26 +02:00
|
|
|
width: 100%;
|
2017-08-20 00:39:19 +02:00
|
|
|
background: #7a504c;
|
|
|
|
padding: 15px;
|
|
|
|
box-shadow: -4px 4px 1px rgba(0, 0, 0, 0.3);
|
|
|
|
}
|
|
|
|
/* line 97, ../sass/screen.scss */
|
|
|
|
.container .aside-wrap .aside .calendar {
|
|
|
|
margin: 0 auto;
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
/* line 104, ../sass/screen.scss */
|
|
|
|
.container .content {
|
|
|
|
max-width: 700px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
/* line 111, ../sass/screen.scss */
|
|
|
|
.container .content section article {
|
|
|
|
background: #fff;
|
|
|
|
padding: 30px;
|
|
|
|
box-shadow: -4px 4px 1px rgba(0, 0, 0, 0.3);
|
|
|
|
}
|
|
|
|
/* line 115, ../sass/screen.scss */
|
|
|
|
.container .content section article a {
|
|
|
|
color: #30355a;
|
|
|
|
}
|
|
|
|
/* line 120, ../sass/screen.scss */
|
|
|
|
.container .content section article + h2 {
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
2017-08-22 00:58:18 +02:00
|
|
|
/* line 125, ../sass/screen.scss */
|
|
|
|
.container .content section.directory article.entry {
|
|
|
|
width: 80%;
|
|
|
|
max-width: 600px;
|
|
|
|
max-height: 100%;
|
|
|
|
position: relative;
|
|
|
|
padding-right: 120px;
|
|
|
|
}
|
|
|
|
/* line 132, ../sass/screen.scss */
|
|
|
|
.container .content section.directory article.entry .entry-image {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
width: 150px;
|
|
|
|
background: #fff;
|
|
|
|
box-shadow: -4px 4px 1px rgba(0, 0, 0, 0.2);
|
|
|
|
padding: 1px;
|
|
|
|
overflow: hidden;
|
|
|
|
right: 100px;
|
|
|
|
transform: translateX(90%);
|
|
|
|
top: -15px;
|
|
|
|
}
|
|
|
|
/* line 144, ../sass/screen.scss */
|
|
|
|
.container .content section.directory article.entry .entry-image img {
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
|
|
|
}
|
|
|
|
/* line 155, ../sass/screen.scss */
|
|
|
|
.container .content section.actuhome article.actu {
|
|
|
|
background: none;
|
|
|
|
box-shadow: none;
|
|
|
|
max-width: 400px;
|
|
|
|
}
|
|
|
|
/* line 160, ../sass/screen.scss */
|
|
|
|
.container .content section.actuhome article.actu .actu-header {
|
|
|
|
position: relative;
|
|
|
|
box-shadow: -4px 5px 1px rgba(0, 0, 0, 0.3);
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
/* line 167, ../sass/screen.scss */
|
|
|
|
.container .content section.actuhome article.actu .actu-header img {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
min-height: 100%;
|
|
|
|
min-width: 100%;
|
|
|
|
height: auto;
|
|
|
|
width: auto;
|
|
|
|
z-index: -1;
|
|
|
|
}
|
|
|
|
/* line 177, ../sass/screen.scss */
|
|
|
|
.container .content section.actuhome article.actu .actu-header h2 {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding-top: 150px;
|
|
|
|
}
|
2017-08-20 00:39:19 +02:00
|
|
|
|
2017-08-22 00:58:18 +02:00
|
|
|
/* line 194, ../sass/screen.scss */
|
2017-08-20 00:39:19 +02:00
|
|
|
.calendar td, .calendar th {
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: center;
|
|
|
|
border: 2px solid transparent;
|
|
|
|
padding: 1px;
|
|
|
|
}
|
2017-08-22 00:58:18 +02:00
|
|
|
/* line 201, ../sass/screen.scss */
|
2017-08-20 00:39:19 +02:00
|
|
|
.calendar th {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2017-08-22 00:58:18 +02:00
|
|
|
/* line 206, ../sass/screen.scss */
|
2017-08-20 00:39:19 +02:00
|
|
|
.calendar td.out {
|
|
|
|
opacity: 0.3;
|
|
|
|
}
|
2017-08-22 00:58:18 +02:00
|
|
|
/* line 209, ../sass/screen.scss */
|
2017-08-20 00:39:19 +02:00
|
|
|
.calendar td.today {
|
|
|
|
border-bottom-color: #000;
|
2017-08-19 01:32:26 +02:00
|
|
|
}
|