Endringer

This commit is contained in:
2021-05-31 18:08:12 +02:00
parent fb8e284e12
commit eb3d51f884
2 changed files with 51 additions and 56 deletions

View File

@@ -23,6 +23,53 @@
#bg-matrix { filter: invert(); }
#bg-meet { filter: invert(); }
}
.service-list {
padding: 0;
display: flex;
flex-wrap: wrap;
justify-content: center;
list-style: none;
gap: 1rem;
}
.service-list li {
width: 10rem;
height: 8rem;
}
.service-list li a:focus {
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
box-shadow: 0 0 2px 2px var(--accent-color), 0 .5rem 1rem var(--shadow-color) !important;
}
.service-list li a:hover {
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
box-shadow: 0 0 2px 2px var(--accent-color), 0 .5rem 1rem var(--shadow-color) !important;
}
.service-list li a {
font-size: 1.5rem;
color: var(--text-color);
text-decoration: none;
display: block;
width: 100%;
height: 100%;
text-align: center;
vertical-align:middle;
display: flex;
flex-flow: column;
align-items: center;
justify-content: center;
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 a div {
vertical-align: middle;
}
</style>
</head>
<body class="theme-auto">
@@ -50,3 +97,4 @@
</div>
</body>
</html>