kpsul/gestioncof/cms/static/cofcms/css/screen.css

355 lines
8.6 KiB
CSS
Raw Normal View History

/* 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 */
*, *:after, *:before {
box-sizing: border-box;
}
/* line 16, ../sass/screen.scss */
body {
background: #ffcc6f;
font: 17px "Source Sans Pro", "sans-serif";
}
/* line 21, ../sass/screen.scss */
header {
background: #30355a;
}
/* line 25, ../sass/screen.scss */
h1, h2 {
font-family: "Carter One";
}
/* line 29, ../sass/screen.scss */
h1 {
font-size: 2.3em;
}
/* line 33, ../sass/screen.scss */
h2 {
font-size: 1.6em;
}
/* line 37, ../sass/screen.scss */
a {
color: #f9752b;
text-decoration: none;
2017-08-26 18:05:20 +02:00
font-weight: bold;
}
/* line 43, ../sass/screen.scss */
2017-08-26 18:05:20 +02:00
h2 a {
font-weight: inherit;
color: inherit;
}
/* line 49, ../sass/screen.scss */
header section {
display: flex;
width: 100%;
justify-content: space-between;
align-items: stretch;
}
2017-08-26 18:05:20 +02:00
/* line 55, ../sass/screen.scss */
header section.bottom-menu {
justify-content: space-around;
text-align: center;
background: #47395e;
}
2017-08-26 18:05:20 +02:00
/* line 61, ../sass/screen.scss */
header h1 {
padding: 0 15px;
}
2017-08-26 18:05:20 +02:00
/* line 65, ../sass/screen.scss */
header nav ul {
display: flex;
}
2017-08-26 18:05:20 +02:00
/* line 67, ../sass/screen.scss */
header nav ul li {
display: inline-block;
}
2017-08-26 18:05:20 +02:00
/* line 69, ../sass/screen.scss */
header nav ul li > * {
display: block;
padding: 10px 15px;
font-weight: bold;
}
2017-08-26 18:05:20 +02:00
/* line 74, ../sass/screen.scss */
header nav ul li > *:hover {
background: #1e2139;
}
2017-08-26 18:05:20 +02:00
/* line 83, ../sass/screen.scss */
article {
line-height: 1.4;
}
/* line 85, ../sass/screen.scss */
article p, article ul {
margin: 0.4em 0;
}
/* line 88, ../sass/screen.scss */
article ul {
padding-left: 20px;
}
/* line 90, ../sass/screen.scss */
article ul li {
list-style: outside;
}
/* line 96, ../sass/screen.scss */
.container {
max-width: 1000px;
margin: 0 auto;
position: relative;
}
2017-08-26 18:05:20 +02:00
/* line 101, ../sass/screen.scss */
.container .aside-wrap {
position: absolute;
top: 30px;
height: 100%;
width: 250px;
}
2017-08-26 18:05:20 +02:00
/* line 107, ../sass/screen.scss */
.container .aside-wrap .aside {
2017-08-26 18:05:20 +02:00
color: #fff;
position: fixed;
position: sticky;
top: 5px;
width: 100%;
background: #7a504c;
padding: 15px;
box-shadow: -4px 4px 1px rgba(0, 0, 0, 0.3);
}
2017-08-26 18:05:20 +02:00
/* line 117, ../sass/screen.scss */
.container .aside-wrap .aside .calendar {
margin: 0 auto;
display: block;
}
2017-08-26 18:05:20 +02:00
/* line 124, ../sass/screen.scss */
.container .content {
max-width: 700px;
margin-left: auto;
margin-right: 0;
}
2017-08-26 18:05:20 +02:00
/* line 129, ../sass/screen.scss */
.container .content .intro {
border-bottom: 3px solid #6f4800;
margin: 20px -10px;
margin-top: 5px;
padding: 15px 5px;
}
/* line 139, ../sass/screen.scss */
.container .content section article {
background: #fff;
padding: 30px;
box-shadow: -4px 4px 1px rgba(0, 0, 0, 0.3);
}
2017-08-26 18:05:20 +02:00
/* line 143, ../sass/screen.scss */
.container .content section article a {
color: #30355a;
}
2017-08-26 18:05:20 +02:00
/* line 148, ../sass/screen.scss */
.container .content section article + h2 {
margin-top: 15px;
}
2017-08-26 18:05:20 +02:00
/* line 152, ../sass/screen.scss */
.container .content section article + article {
margin-top: 25px;
}
/* line 157, ../sass/screen.scss */
.container .content section.directory article.entry {
width: 80%;
max-width: 600px;
max-height: 100%;
position: relative;
padding-right: 120px;
}
2017-08-26 18:05:20 +02:00
/* line 164, ../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;
}
2017-08-26 18:05:20 +02:00
/* line 176, ../sass/screen.scss */
.container .content section.directory article.entry .entry-image img {
width: auto;
height: auto;
max-width: 100%;
max-height: 100%;
}
2017-08-26 18:05:20 +02:00
/* line 186, ../sass/screen.scss */
.container .content section.actuhome {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
}
/* line 192, ../sass/screen.scss */
.container .content section.actuhome article + article {
margin: 0;
}
/* line 196, ../sass/screen.scss */
.container .content section.actuhome article.actu {
background: none;
box-shadow: none;
max-width: 400px;
2017-08-26 18:05:20 +02:00
min-width: 300px;
flex: 1;
}
2017-08-26 18:05:20 +02:00
/* line 203, ../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;
2017-08-26 18:05:20 +02:00
background-size: cover;
background-position: center center;
}
2017-08-26 18:05:20 +02:00
/* line 212, ../sass/screen.scss */
.container .content section.actuhome article.actu .actu-header h2 {
width: 100%;
height: 100%;
2017-08-26 18:05:20 +02:00
padding: 5px;
padding-top: 150px;
2017-08-26 18:05:20 +02:00
text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}
/* line 218, ../sass/screen.scss */
.container .content section.actuhome article.actu .actu-header h2 a {
color: #fff;
}
/* line 224, ../sass/screen.scss */
.container .content section.actuhome article.actu .actu-misc {
background: #ffe7bc;
box-shadow: -4px 5px 1px rgba(0, 0, 0, 0.3);
margin: 0 10px;
padding: 15px;
padding-top: 5px;
}
/* line 231, ../sass/screen.scss */
.container .content section.actuhome article.actu .actu-misc .actu-minical {
display: block;
}
/* line 234, ../sass/screen.scss */
.container .content section.actuhome article.actu .actu-misc .actu-dates {
display: block;
text-align: right;
font-size: 0.9em;
}
2017-08-26 18:05:20 +02:00
/* line 247, ../sass/screen.scss */
.calendar td, .calendar th {
text-align: center;
vertical-align: center;
border: 2px solid transparent;
padding: 1px;
}
2017-08-26 18:05:20 +02:00
/* line 254, ../sass/screen.scss */
.calendar th {
font-weight: bold;
}
2017-08-26 18:05:20 +02:00
/* line 258, ../sass/screen.scss */
.calendar td {
font-size: 0.8em;
width: 25px;
height: 30px;
}
/* line 263, ../sass/screen.scss */
.calendar td.out {
opacity: 0.3;
}
2017-08-26 18:05:20 +02:00
/* line 266, ../sass/screen.scss */
.calendar td.today {
border-bottom-color: #000;
}
2017-08-26 18:05:20 +02:00
/* line 269, ../sass/screen.scss */
.calendar td:nth-child(7) {
background: rgba(0, 0, 0, 0.3);
}
/* line 272, ../sass/screen.scss */
.calendar td:nth-child(6) {
background: rgba(0, 0, 0, 0.2);
}
/* line 275, ../sass/screen.scss */
.calendar td.hasevent {
font-weight: bold;
color: #f9752b;
font-size: 1em;
}