|
@ -53,6 +53,11 @@ body { |
|
|
background-color: peachpuff; |
|
|
background-color: peachpuff; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.side-bar { |
|
|
|
|
|
border: 2px solid var(--border-color); |
|
|
|
|
|
max-width: 400px; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.card:nth-child(even){ |
|
|
.card:nth-child(even){ |
|
|
transform: rotate(-1deg); |
|
|
transform: rotate(-1deg); |
|
@ -87,11 +92,19 @@ body { |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.entries{ |
|
|
|
|
|
padding-top: 15%; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
/* base header & menu */ |
|
|
/* base header & menu */ |
|
|
|
|
|
|
|
|
#top-menu{ |
|
|
#top-menu{ |
|
|
transform: rotate(-3deg); |
|
|
position: fixed; |
|
|
margin-left: 2em; |
|
|
left: 50%; |
|
|
|
|
|
transform: translate(-50%); |
|
|
|
|
|
width: 90%; |
|
|
|
|
|
z-index: 1; |
|
|
|
|
|
margin-top: 1em; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.logo { |
|
|
.logo { |
|
@ -274,6 +287,19 @@ footer.post-footer { |
|
|
border-top: 2px solid cornflowerblue; |
|
|
border-top: 2px solid cornflowerblue; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.calendar-image-holder{ |
|
|
|
|
|
border-bottom: 2px solid cornflowerblue; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.calendar-image-holder a { |
|
|
|
|
|
display: inherit; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.calendar-image{ |
|
|
|
|
|
max-width: 100%; |
|
|
|
|
|
display: inherit; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
/* Card metadata (video & calendar) */ |
|
|
/* Card metadata (video & calendar) */ |
|
|
|
|
|
|
|
|
.metadata { |
|
|
.metadata { |
|
@ -325,9 +351,71 @@ label:hover { |
|
|
text-align: center; |
|
|
text-align: center; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* Paginator */ |
|
|
|
|
|
|
|
|
|
|
|
nav.pagination{ |
|
|
|
|
|
width: 60%; |
|
|
|
|
|
margin: auto; |
|
|
|
|
|
margin-top: 2em; |
|
|
|
|
|
margin-bottom: 2em; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
ul.pagination{ |
|
|
|
|
|
display: flex; |
|
|
|
|
|
justify-content: space-evenly; /* align horizontal */ |
|
|
|
|
|
align-items: center; /* align vertical */ |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.page-item{ |
|
|
|
|
|
display: block; |
|
|
|
|
|
text-align: center; |
|
|
|
|
|
vertical-align: middle; |
|
|
|
|
|
font-size: 38px; |
|
|
|
|
|
border: 2px solid #1B4C8A; |
|
|
|
|
|
box-shadow:0.4em 0.4em 0 #d2d1c8; |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
li.page-item{ |
|
|
|
|
|
background-color: lightblue; |
|
|
|
|
|
padding: 0.4em; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
li.page-item.active{ |
|
|
|
|
|
background-color: peachpuff; |
|
|
|
|
|
border: 2px solid tomato; |
|
|
|
|
|
padding: 0.4em; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
li.page-item.disabled{ |
|
|
|
|
|
display: none; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
li.page-item:nth-child(even){ |
|
|
|
|
|
transform: rotate(-1deg); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
li.page-item:nth-child(odd){ |
|
|
|
|
|
transform: rotate(1deg); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
li.page-item:nth-child(5){ |
|
|
|
|
|
transform: rotate(2deg); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
li.page-item:nth-child(8){ |
|
|
|
|
|
transform: rotate(-3deg); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Page footer */ |
|
|
/* Page footer */ |
|
|
|
|
|
|
|
|
footer.bar { |
|
|
footer.bar { |
|
|
margin-top:0; |
|
|
margin-top: 0; |
|
|
|
|
|
width: 80%; |
|
|
|
|
|
margin-left: auto; |
|
|
|
|
|
display: block; |
|
|
|
|
|
margin-right: auto; |
|
|
|
|
|
margin-bottom: 2em; |
|
|
} |
|
|
} |