Template:Home/DidYouKnow/styles.css: Difference between revisions

Template page
(Created page with "#DidYouKnow { width: 50%; } @media (max-width: 850px) { #DidYouKnow { width:100%; } }")
 
No edit summary
 
(15 intermediate revisions by the same user not shown)
Line 1: Line 1:
#DidYouKnow {
#DidYouKnow {
     width: 50%;
     display: flex;
    flex-direction: column;
}
}


@media (max-width: 850px) {
 
     #DidYouKnow {   
.factlist li + li {
        width:100%;
    margin-top: 1em;
     }
}
 
.factlist {
     display: flex;
    flex-direction: column;
    justify-content: space-evenly;
     padding: 0 20px;
}
 
.factlist li::marker {
  content: '💾';
}
}

Latest revision as of 10:53, 13 October 2023

#DidYouKnow {
    display: flex;
    flex-direction: column;
}


.factlist li + li {
    margin-top: 1em;
}

.factlist {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 0 20px;
}

.factlist li::marker {
  content: '💾';
}