2024-04-08 21:53:07 +02:00
|
|
|
body {
|
|
|
|
padding-left: 2%;
|
2024-04-09 08:42:26 +02:00
|
|
|
padding-right: 2%;
|
|
|
|
padding-bottom: 4em;
|
|
|
|
|
2024-04-08 21:53:07 +02:00
|
|
|
}
|
|
|
|
|
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-09 08:42:26 +02:00
|
|
|
.app-link.desktop {
|
|
|
|
color: white;
|
|
|
|
background-color: black;
|
|
|
|
display: inline-block;
|
|
|
|
text-align: center;
|
|
|
|
height: 40px;
|
|
|
|
width: 120px;
|
|
|
|
border-radius: 5px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
p {
|
|
|
|
display: inline;
|
|
|
|
line-height: 40px;
|
|
|
|
vertical-align: middle;
|
|
|
|
font-family: sans;
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 {
|
2024-04-09 08:42:26 +02:00
|
|
|
/* border: 2px solid #1948e3; */
|
|
|
|
border: 2px solid darkblue;
|
2024-04-08 10:32:48 +02:00
|
|
|
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-09 08:42:26 +02:00
|
|
|
max-width: 400em;
|
2024-04-08 10:32:48 +02:00
|
|
|
|
2024-04-10 11:00:59 +02:00
|
|
|
h2 {
|
|
|
|
margin-bottom: 0.6em;
|
|
|
|
}
|
|
|
|
|
2024-04-08 21:23:36 +02:00
|
|
|
&:hover {
|
2024-04-09 08:42:26 +02:00
|
|
|
background-color: lightgoldenrodyellow;
|
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;
|
|
|
|
}
|
|
|
|
}
|