mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 18:56:29 +02:00
28 lines
551 B
CSS
28 lines
551 B
CSS
/**
|
|
* A collection of popular layouts and patterns made with CSS (https://csslayout.io)
|
|
* (c) 2019 - 2021 Nguyen Huu Phuoc <https://twitter.com/nghuuphuoc>
|
|
*/
|
|
|
|
.cover {
|
|
align-items: center;
|
|
color: var(--color-gray-9);
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
padding: 1rem;
|
|
text-decoration: none;
|
|
width: 7rem;
|
|
}
|
|
.cover__name {
|
|
font-weight: normal;
|
|
margin: 0;
|
|
padding-top: 0.5rem;
|
|
text-align: center;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.cover {
|
|
width: 8rem;
|
|
}
|
|
}
|