owl-blogs/web/static/style.css

20 lines
384 B
CSS
Raw Normal View History

2024-01-23 18:17:04 +00:00
.action-tile-list {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.action-tile {
2024-01-24 21:04:15 +00:00
border: 1px solid var(--background-dark);
2024-01-23 18:17:04 +00:00
padding: 20px;
flex: 1 1 0px;
margin: 6px;
min-width: 20%;
text-align: center;
2024-01-24 21:04:15 +00:00
background: var(--background);
2024-01-23 18:17:04 +00:00
border-radius: 4px;
2024-01-24 21:04:15 +00:00
}
.action-tile:hover {
background: var(--background-light);
2024-01-23 18:17:04 +00:00
}