2024-04-08 21:53:07 +02:00
|
|
|
body {
|
|
|
|
padding-left: 2%;
|
|
|
|
}
|
|
|
|
|
2024-04-08 10:32:48 +02:00
|
|
|
.icon {
|
|
|
|
height: 100px;
|
|
|
|
float: left;
|
|
|
|
margin-right: 1em;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
2024-04-08 21:23:36 +02:00
|
|
|
.app-link {
|
|
|
|
text-decoration: none;
|
2024-04-08 22:12:43 +02:00
|
|
|
|
|
|
|
img {
|
|
|
|
margin: 6px 6px 0px 6px;
|
|
|
|
}
|
2024-04-08 21:23:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.link {
|
|
|
|
color: green;
|
|
|
|
}
|
|
|
|
|
2024-04-08 22:12:43 +02:00
|
|
|
button.url {
|
|
|
|
font: inherit;
|
|
|
|
font-size: .8em;
|
|
|
|
background: #3465a4;
|
|
|
|
color: white;
|
|
|
|
border: none;
|
|
|
|
padding: 0 .4em;
|
|
|
|
border-radius: .4em;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background: lightblue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-08 10:32:48 +02:00
|
|
|
.list {
|
2024-04-08 21:53:07 +02:00
|
|
|
/* display: flex; */
|
2024-04-08 10:32:48 +02:00
|
|
|
flex-direction: column;
|
2024-04-08 21:53:07 +02:00
|
|
|
padding: 0px;
|
2024-04-08 10:32:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.card {
|
|
|
|
border: 1px solid #1948e3;
|
|
|
|
border-radius: 25px;
|
2024-04-08 21:53:07 +02:00
|
|
|
margin: 0 0 0 0;
|
2024-04-08 10:32:48 +02:00
|
|
|
padding: 1em;
|
2024-04-08 21:53:07 +02:00
|
|
|
max-width: 40em;
|
2024-04-08 10:32:48 +02:00
|
|
|
|
2024-04-08 21:23:36 +02:00
|
|
|
&:hover {
|
2024-04-08 22:12:43 +02:00
|
|
|
background-color: lightyellow;
|
2024-04-08 21:23:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:last-of-type) {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
2024-04-08 10:32:48 +02:00
|
|
|
}
|
|
|
|
|
2024-04-08 21:23:36 +02:00
|
|
|
.trunc {
|
2024-04-08 10:32:48 +02:00
|
|
|
height: 100px;
|
|
|
|
|
|
|
|
.text {
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|