mirror of
https://forge.fsky.io/midgard/linkdir.git
synced 2025-04-18 16:23:42 -05:00
44 lines
591 B
CSS
44 lines
591 B
CSS
body {
|
|
font-family: Arial;
|
|
background-color: #B8B7B4;
|
|
color: black;
|
|
}
|
|
|
|
.card {
|
|
background-color: #D0CEC4;
|
|
display: flex;
|
|
align-items: center;
|
|
border: solid;
|
|
border-radius: 7px;
|
|
border-width: 2px;
|
|
border-color: white;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
a, a:link, a:visited, a:hover {
|
|
color: blue;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.card-link,
|
|
.card-link a,
|
|
.card-link a:link,
|
|
.card-link a:visited,
|
|
.card-link a:hover {
|
|
color: black !important;
|
|
text-decoration: none;
|
|
}
|
|
|
|
h2, p {
|
|
display: block;
|
|
}
|
|
|
|
.icon img {
|
|
width: 150px;
|
|
margin-left: 10px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
}
|