home/static/style.css
2024-04-08 22:12:43 +02:00

72 lines
821 B
CSS

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