titre widget responsiv (fixes #20)

This commit is contained in:
afornerot 2019-10-21 12:16:18 +02:00
parent 4f3efd5776
commit 198ebd14f5
2 changed files with 14 additions and 12 deletions

View File

@ -603,6 +603,7 @@ a.item-heart {
position: absolute; position: absolute;
margin-left:50px; margin-left:50px;
cursor: pointer; cursor: pointer;
font-size: 1.5vw;
} }
.widgetheader iframe, .widgetheader iframe,
@ -619,6 +620,12 @@ a.item-heart {
height:100%; height:100%;
} }
@media (max-width: 991px) {
.widgetheader .title {
font-size: 25px;
}
}
/*== FEED ===============================================================================================================================================*/ /*== FEED ===============================================================================================================================================*/
.cat-list-feed { .cat-list-feed {

View File

@ -1,5 +1,5 @@
.widgetheader .title { .widgetheader .title {
font-size: 25px; font-size: 1.2vw;
} }
@ -59,17 +59,6 @@ body.simple {
} }
/*
.widget-notbordered .widgetheader {
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.widget-notbordered .widgetbody .list-item, .widget-notbordered .widgetbody .grid-item-content {
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
*/
.grid .grid-preview { .grid .grid-preview {
width: 15%; width: 15%;
min-width: 138px; min-width: 138px;
@ -95,3 +84,9 @@ body.simple {
border-radius: 10px; border-radius: 10px;
margin-bottom: 5px; margin-bottom: 5px;
} }
@media (max-width: 991px) {
.widgetheader .title {
font-size: 25px;
}
}