forked from ti-nuage/site
Support du calendrier NextCloud (fix #7).
This commit is contained in:
@@ -95,6 +95,34 @@ abbr {
|
||||
border-bottom: 1px dotted #373d3f;
|
||||
}
|
||||
|
||||
.loader-wrapper {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 4fr;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
padding: 1em;
|
||||
width: 400px;
|
||||
}
|
||||
|
||||
.loader-wrapper div {
|
||||
animation: spin 2s linear infinite;
|
||||
display: table-column-group;
|
||||
height: 30px;
|
||||
width: 30px;
|
||||
border: 5px solid #fff0;
|
||||
border-top: 5px solid #555;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.loader-wrapper p {
|
||||
padding-top: 0.5em;
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
0% { transform: rotate(0deg); }
|
||||
100% { transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
.meta-published {
|
||||
color: #999;
|
||||
margin-bottom: 1em;
|
||||
@@ -189,10 +217,37 @@ nav section ul li {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.news-entry h3 {
|
||||
position: relative;
|
||||
padding-left: 2em;
|
||||
padding-top: 0.2em;
|
||||
}
|
||||
|
||||
.news-entry h3::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
height: 48px;
|
||||
width: 48px;
|
||||
}
|
||||
|
||||
.blog-entry h3::before {
|
||||
background: transparent url(/images/uicons/comment.svg) center center no-repeat;
|
||||
}
|
||||
|
||||
.event-entry h3::before {
|
||||
background: transparent url(/images/uicons/alarm-clock.svg) center center no-repeat;
|
||||
}
|
||||
|
||||
.event-elapsed h3 {
|
||||
color: grey;
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
.services {
|
||||
border: lightblue 4px solid;
|
||||
padding: 0.6em;
|
||||
|
||||
}
|
||||
|
||||
.services-title {
|
||||
@@ -201,7 +256,7 @@ nav section ul li {
|
||||
line-height: 48px;
|
||||
}
|
||||
|
||||
.services-title:before {
|
||||
.services-title::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
|
||||
Reference in New Issue
Block a user