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

Template page
No edit summary
No edit summary
Line 23: Line 23:
     flex-wrap: wrap;
     flex-wrap: wrap;
     justify-content: center;
     justify-content: center;
    list-style-type: none;
}
#catlist img {
width: 150px;
}
}



Revision as of 15:47, 4 June 2023

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

#welcome {
	grid-column: span 2;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

#welcome h1 {
    text-align: initial;
}

#welcome h2, #message, #cat {
    text-align: center;
}

#catlist {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style-type: none;
}

#catlist img {
	width: 150px;
}

#catlist li {
    margin: 0.75em;
}