You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

481 lines
7.1 KiB

@font-face {
font-family: 'unionbold';
src: url('fonts/union-bold-webfont.woff2') format('woff2'),
url('fonts/union-bold-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'unionbold_italic';
src: url('fonts/union-bolditalic-webfont.woff2') format('woff2'),
url('fonts/union-bolditalic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'unionitalic';
src: url('fonts/union-italic-webfont.woff2') format('woff2'),
url('fonts/union-italic-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'unionregular';
src: url('fonts/union-webfont.woff2') format('woff2'),
url('fonts/union-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
*{
font-family:'unionregular';
}
body{
margin:0 10px;
padding:0;
font-size : 12px;
}
#menu {
display: grid;
grid-template-columns: 8fr 2fr;
}
@media (max-width: 1080px) {
#menu {
grid-template-columns: 1fr;
/*! margin-bottom:40px */
}
}
#menu ul {
list-style: none;
margin:0;
padding: 25px 5px;
}
#menu ul li {
display:inline-block;
margin-right:60px;
font-size:1.5em;
}
#menu ul li:first-of-type {
font-size:1.5em;
}
#menu ul li a{
color: #000000;
text-decoration : none;
}
#menu div form{
display: inline-block;
}
#menu span form input{
border:none;
font-size:inherit;
color: #000;
}
#menu span form input:focus{
border: none;
outline: none;
}
a:hover{
color:#95a5a6 !important;
}
.legend{
border-top:solid 1px;
border-bottom:solid 1px;
padding:0;
margin:0;
background: #eaeaea;
cursor: pointer;
}
.legend .sort {
border-right: solid 1px;
padding: 10px 10px;
display: inline-block
}
.legend li{
position: relative;
}
.legend li.sort::after {
position: absolute;
width: 20px;
height:20px;
content: '↝';
right:0;
font-size: 1em;
}
.legend li.sort-asc::after {
position: absolute;
width: 20px;
height:20px;
content: ' ▲';
right:0;
font-size: 1em;
}
.legend li.sort-desc::after {
position: absolute;
width: 20px;
height:20px;
right:0;
content: ' ▼';
font-size: 1em;
}
.legend li:last-of-type {
border-right: none;
}
.legend , #articles .alist li .articleData {
display: grid;
grid-template-columns: 1fr 4fr 1fr 3fr 2fr 2fr 5fr ;
}
#articles ul {
list-style:none;
padding:0 0 0 0px;
margin:0;
}
#articles ul li{
font-size:1em;
padding:10px 0px;
border-bottom: 1px solid #000000;
}
#articles ul li.noContent *{
color:#aaa
}
#articles ul li.noContent .content-wrapper.open{
color:#aaa;
display: none;
}
#articles ul.alist li.noContent:hover {
color:#aaa;
background: #fff;
}
#articles ul.alist li:hover{
/*! font-size:1em; */
border-bottom: 1px solid #000000;
color : #000;
background: #eaeaea;
}
#articles .legend li {
color : #000000;
text-decoration:none;
pointer-events: none;
}
#articles .alist li span{
padding-left: 10px;
overflow: hidden;
white-space: nowrap;
position :relative;
display: inline-block;
z-index: 1;
}
#articles .alist li span::after{
display: block;
z-index: 10;
content:'';
position: absolute;
right:0px;
top:0;
width: 60px;
height:100%;
background: url('fade.png');
background-size: cover;
}
#articles ul li:hover span::after{
display: none;
}
#articles .alist li .content-wrapper{
height:0;
max-height: 0px;
overflow: hidden;
color : #000;
background: #fff;
transition: max-height .5s ease-in;
/*! width: 100vw; */
}
.open{
height:auto !important;
max-height:2000px !important;
margin-top: 10px !important;
}
.content-wrapper .content{
grid-area: content;
width:80%;
margin: 20px auto;
}
#articles ul.alist li .content-wrapper p{
width: 100%;
margin:auto;
}
.content-wrapper{
margin:auto ;
font-size:1em!important;
background:#fff;
display: grid;
grid-template-columns: : 1fr 2fr ;
grid-template-areas:
" gallerie gallerie"
" imgZoom content ";
}
.content-wrapper .gal{
grid-area: gallerie;
}
.gal {
display : grid ;
grid-template-columns: repeat(18 , 1fr) ;
column-gap: 5px;
row-gap: 15px;
height:auto;
max-width: 100%;
padding-top:20px;
}
.img_container {
height: 50px;
position: relative;
overflow: hidden;
display: grid;
align-content: center;
align-items: center;
justify-items: center;
justify-content: center;
align-items: center;
align-content: space-around;
}
.img_container img{
width :150%;
height: auto;
}
.img_container:last-of-type {
}
.imgzoom{
padding:20px;
display: grid;
}
.meta {
border:none;
padding: 10px ;
font-size: 1.5em;
}
.meta tr {
border:none;
background: #f0f0f0;
vertical-align: baseline;
}
.meta td {
border:none;
text-align:left;
background: #ffffff;
}
.meta tr td:first-of-type{
width: auto;
padding-right: 20px ;
white-space: nowrap;
}
.content-wrapper .content {
padding:10px;
}
#content-wrapper p{
text-align:left;
margin-left:10px;
}
#content-wrapper pre{
// font-size:2em;
color:#2c3e50;
background:#ecf0f1;
border-radius:3px;
padding:8px;
outline:3px #2c3e50 solid ;
overflow-x : auto ;
}
#content-wrapper code{
color:#2c3e50;
overflow-x : auto ;
font-family:monospace;
}
#content-wrapper h1{
font-size : 2.5em;
margin: 20px 0 0 -10px ;
}
#metad{
margin: 5px 0 30px 0;
}
#metad span {
font-size : 1em;
}
#metad span:after{
content:" / ";
margin: 0 0px 0 0px;
}
#metad .cat {
font-weight: bolder;
}
#metad .author {
font-style: italic;
}
#metad .date {
}
img {
width:100%;
height:auto;
max-width: 1080px;
text-align: center;
display: block;
margin: auto;
}
p strong img{
width:250px;
}
p em img{
width:150px;
float:right;
}
p{
line-height:1.2em;
margin-top:1.5em;
margin-bottom:1.5em;
text-align:justify;
font-size:1.3em;
}
.fullImg{
grid-column: span 3;
height: auto!important;
}
.fullImg img{
width:100%;
}
key{
padding:1px 6px;
border:1px solid lightgrey;
border-radius: 5px;
box-shadow: 1px 1px 0px 1px rgb(120# 20# 20) ,
-1px -1px 0px 1px rgb(220 ## 20## 20);
background: #efefef;
background: rgb(185# 85# 85);
background: radial-gradient( rgba(200## 00# 90# ) 1%, rgba(225## 25## 25# ) 100%, rgba(185# 85# 85# ) 100%)
;
}
@media (max-width: 600px) {
#articles ul li span {
display:none;
}
#menu ul li:first-of-type {
outline: none;
width:100%;
}
#menu ul li {
outline: 1px solid #000;
padding: 2px 10px;
border-radius:3px;
margin-left:4px;
margin-bottom: 5px;
margin-right:0;
}
}