owl-blogs/web/static/style.css

31 lines
565 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-25 21:12:14 +00:00
}
.danger {
background-color: var(--del-color) !important;
}
.drop-file {
background: #a2dbff;
border-style: dashed;
border-width: 4px;
border-color: #5391ff;
2024-01-23 18:17:04 +00:00
}