add app list

This commit is contained in:
2024-01-06 20:04:23 -05:00
parent 5ffb89dfb3
commit 3207f70d67
2 changed files with 54 additions and 1 deletions

View File

@@ -70,11 +70,48 @@ a {
div.contact:hover {
opacity: 1;
}
.apps {
width: 550px;
margin:auto;
display: grid;
grid-template-areas:
'one two three';
grid-gap: 10px;
padding: 10px;
grid-auto-columns: 1fr;
grid-auto-rows: 1fr;
}
.app {
float: left;
width: 170px;
padding: 15px;
background-color: #232629;
border-radius: 10px;
text-align: center;
opacity: .9;
position: relative;
transition: opacity .25s;
}
.app a {
z-index: 10;
width: 100%;
height: 100%;
top: 0;
left: 0;
opacity: 0;
position: absolute;
}
div.app:hover {
opacity: 1;
}
@media screen and (max-width:500px) {
.contact {
width: 100%;
}
.app {
width: 100%;
}
:root {
width: 95%;
}