mirror of
https://github.com/PretendoNetwork/website.git
synced 2026-05-03 20:06:08 -05:00
19 lines
356 B
CSS
19 lines
356 B
CSS
/* news cards */
|
|
.smallCard {
|
|
padding: 2em;
|
|
border: 1px solid rgb(165, 165, 165);
|
|
border-radius: 10px;
|
|
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
|
|
position: relative;
|
|
margin: .5em;
|
|
width: calc(50% - 1em );
|
|
box-sizing: border-box;
|
|
display: inline-block;
|
|
}
|
|
.smallCard h3 {
|
|
font-size: 1.5em;
|
|
margin: 0;
|
|
}
|
|
.smallCard a {
|
|
display: inline-block;
|
|
} |