2024-05-09 12:15:19 +00:00
|
|
|
|
|
|
|
.row {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
2024-05-09 14:11:13 +00:00
|
|
|
.grid {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: stretch;
|
|
|
|
}
|
|
|
|
|
|
|
|
.grid > * {
|
|
|
|
flex: 1;
|
|
|
|
margin: 0.25rem;
|
|
|
|
}
|
|
|
|
|
2024-05-09 12:15:19 +00:00
|
|
|
nav.row {
|
|
|
|
margin-bottom: 2rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entry-title {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entry-meta {
|
|
|
|
font-size: 0.8rem;
|
|
|
|
padding-bottom: 2rem;
|
|
|
|
}
|
|
|
|
|
2024-01-23 18:17:04 +00:00
|
|
|
.action-tile-list {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-around;
|
|
|
|
}
|
|
|
|
|
|
|
|
.action-tile {
|
2024-05-11 14:33:29 +00:00
|
|
|
border: 1px solid var(--primary-l1);
|
2024-01-23 18:17:04 +00:00
|
|
|
padding: 20px;
|
|
|
|
flex: 1 1 0px;
|
|
|
|
margin: 6px;
|
|
|
|
min-width: 20%;
|
|
|
|
text-align: center;
|
2024-05-11 14:33:29 +00:00
|
|
|
background: var(--primary-l4);
|
2024-01-23 18:17:04 +00:00
|
|
|
border-radius: 4px;
|
2024-01-24 21:04:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.action-tile:hover {
|
2024-05-11 14:33:29 +00:00
|
|
|
background: var(--primary-l3);
|
2024-01-25 21:12:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.danger {
|
2024-05-09 14:11:13 +00:00
|
|
|
background-color: rgb(136, 57, 53) !important;
|
2024-02-23 09:10:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.drop-file {
|
|
|
|
background: #a2dbff;
|
|
|
|
border-style: dashed;
|
|
|
|
border-width: 4px;
|
|
|
|
border-color: #5391ff;
|
2024-05-09 08:58:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes border-pulsate {
|
|
|
|
0% {
|
|
|
|
border-color: #5391ff;
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
border-color: rgba(0, 255, 255, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
border-color: #5391ff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.drop-file-process {
|
|
|
|
border-style: dashed;
|
|
|
|
border-width: 4px;
|
|
|
|
border-color: #5391ff;
|
|
|
|
animation: border-pulsate 2s infinite;
|
|
|
|
}
|
2024-05-09 09:02:41 +00:00
|
|
|
|
|
|
|
|
|
|
|
@keyframes border-pulsate-error {
|
|
|
|
0% {
|
|
|
|
border-color: #ff3e3e;
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
border-color: rgba(0, 255, 255, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
border-color: #ff3e3e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.drop-file-error {
|
|
|
|
border-style: solid;
|
|
|
|
border-width: 4px;
|
|
|
|
border-color: #ff3e3e;
|
|
|
|
animation: border-pulsate-error 1s 2;
|
2024-05-11 17:46:47 +00:00
|
|
|
}
|
|
|
|
|