iwm_browser/iwm_browser/static/homepage.css

69 lines
918 B
CSS

.tileBox {
display: flex;
/* outline: 3px dashed pink; */
justify-content: center;
padding: 2px;
width: 100%;
margin-top: 16px;
}
.homeTile {
display: flex;
flex-direction: column;
margin: 4px;
padding: 4px;
justify-content: center;
outline: 1px solid greenyellow;
transition: all 0.5s ease-out;
}
.homeTile a {
color: inherit;
text-decoration: inherit;
transition: all 0.5s ease-out;
}
.homeTile:hover {
outline: 1px solid cyan;
box-shadow: 2px 2px 5px white;
}
.homeTile a:hover {
color: cyan;
}
.Home {
font-size: larger;
}
footer {
display: flex;
justify-content: space-evenly;
padding: 0.5rem;
font-size: small;
}
footer > a {
margin: 0em 1em;
}
.About {
display: flex;
justify-content: center;
text-align: center;
}
.About a:hover {
color: cyan;
}
.About a {
color: skyblue;
}