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

Template page
No edit summary
No edit summary
Line 1: Line 1:
#welcome {
#welcome {
     width: 100%;
     width: 50%;
     text-align: center;
     text-align: center;
}
}
Line 13: Line 13:
     gap: 3em;
     gap: 3em;
     justify-content: center;
     justify-content: center;
}
@media (max-width: 850px) {
    #welcome {   
        width:100%;
    }
}
}

Revision as of 22:00, 15 April 2022

#welcome {
    width: 50%;
    text-align: center;
}

#welcome img{
    margin-top: 1em;
}

#catlist {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 3em;
    justify-content: center;
}

@media (max-width: 850px) {
    #welcome {    
        width:100%;
    }
}