2018-11-11 20:46:16 +00:00
|
|
|
.home-tiles {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: auto auto auto;
|
|
|
|
grid-gap: 20px;
|
|
|
|
padding-top: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.home-tile {
|
2018-11-12 12:48:24 +00:00
|
|
|
display:block;
|
2018-11-11 20:46:16 +00:00
|
|
|
text-align: center;
|
|
|
|
font-size: 1rem;
|
|
|
|
margin: .5em;
|
|
|
|
padding: 2rem;
|
|
|
|
background-color: #68BB6A;
|
|
|
|
transition: all .2s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.home-tile:hover {
|
|
|
|
text-align: center;
|
|
|
|
margin: .5em;
|
|
|
|
background-color: #388E3C;
|
|
|
|
transform: scale(1.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.home-tile-title {
|
|
|
|
color: white;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.home-tile-title:hover {
|
|
|
|
color: white;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#videoHome {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2018-11-12 12:48:24 +00:00
|
|
|
.hide{
|
|
|
|
opacity:0;
|
|
|
|
}
|
|
|
|
|
2018-11-11 20:46:16 +00:00
|
|
|
@media screen and (max-width: 500px) {
|
|
|
|
|
|
|
|
.home-tiles {
|
|
|
|
grid-template-columns: auto;
|
|
|
|
}
|
|
|
|
}
|
2018-11-12 14:09:47 +00:00
|
|
|
|
|
|
|
.NotoSansLight{
|
|
|
|
font-family: NotoSansLight;
|
|
|
|
}
|
|
|
|
|
|
|
|
.NotoSansBold{
|
|
|
|
font-family: NotoSansSemiBold;
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face{
|
|
|
|
font-family:'NotoSansLight';
|
|
|
|
src:url('/assets/style/NotoSansMono/NotoSansMono-Light.ttf ');
|
|
|
|
}
|
|
|
|
|
|
|
|
@font-face{
|
|
|
|
font-family:'NotoSansSemiBold';
|
|
|
|
src:url('/assets/style/NotoSansMono/NotoSansMono-SemiBold.ttf ');
|
|
|
|
}
|