trygve.me/common/main.css

46 lines
1.1 KiB
CSS

body {
font-family: "Noto Sans", "Liberation Sans","Trebuchet MS", Arial, Helvetica, sans-serif;
}
/* Container for main content */
.cont {
margin: auto;
width: max-content;
}
.service-list {
display: flex;
list-style: none;
gap: 1rem;
}
.service-list li {
background-size: contain;
background-position: center;
background-repeat: no-repeat;
width: 10rem;
height: 8rem;
border: thin solid #3c4043;
border-radius: 0.5rem;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.service-list li:hover {
box-shadow: 0 1px 1px rgba(0,0,0,0.11),
0 2px 2px rgba(0,0,0,0.11),
0 4px 4px rgba(0,0,0,0.11),
0 8px 8px rgba(0,0,0,0.11),
0 16px 16px rgba(0,0,0,0.11),
0 32px 32px rgba(0,0,0,0.11);
}
.service-list li a {
display: block;
width: 100%;
height: 100%;
text-align: center;
}
#li-nextcloud { background-image: url(./icons/Nextcloud_Logo.svg); }
#li-matrix { background-image: url(./icons/Matrix_Logo.svg); }