Added more homepage code

This commit is contained in:
Toby Chui
2023-05-24 16:15:39 +08:00
parent 01daf5541a
commit f4f2b55f14
15 changed files with 260 additions and 25 deletions

View File

@@ -20,6 +20,7 @@ body{
min-width: 80px;
background-color: #ffffff;
min-height: 100vh;
padding-top: 1.5em;
}
.iconWrapper{
@@ -83,7 +84,7 @@ body{
.herotext{
padding-top: 15em;
padding-left: 5em;
padding-left: 8vw;
min-height: 100vh;
}
@@ -103,6 +104,24 @@ body{
display: inline-block;
}
/* features */
#features{
padding-top: 4em;
padding-bottom: 4em;
background-color: white;
}
/* screenshots */
.screenshot{
transition: transform ease-in-out 0.1s;
box-shadow: 3px 3px 5px 0px rgba(51,51,51,0.14);
margin-bottom: 1em;
}
.screenshot:hover {
transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
/* RWD */
@media (max-width:960px) {