Add image to the homepage
This commit is contained in:
parent
dec09dcc18
commit
29d29c06ce
Binary file not shown.
After Width: | Height: | Size: 59 KiB |
|
@ -27,5 +27,6 @@
|
||||||
<input type="button" onclick="location.href='/projects/index.html';" value="Projects">
|
<input type="button" onclick="location.href='/projects/index.html';" value="Projects">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<img loading="lazy" class="home" src="/img/FlutterUndulate.png" alt="fluttershy undulate in ms paint">
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
|
@ -36,14 +36,21 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
height: 100vh;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.main {
|
div.main {
|
||||||
margin-top: 30vh;
|
height: 100%;
|
||||||
margin-left: 10vh;
|
align-items: center;
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
img.home {
|
||||||
|
height: 70vh;
|
||||||
|
width: auto;
|
||||||
|
align-self: center;
|
||||||
|
padding: 5%;
|
||||||
}
|
}
|
||||||
/* Website layout */
|
/* Website layout */
|
||||||
|
|
||||||
|
@ -56,6 +63,7 @@ img.webbutton{
|
||||||
/* Web buttons :) */
|
/* Web buttons :) */
|
||||||
|
|
||||||
/* Did you know: I wish I wasn't doing this right now? */
|
/* Did you know: I wish I wasn't doing this right now? */
|
||||||
|
/* Better web site for mobile users coming soon(tm) */
|
||||||
@media (max-width: 64em) {
|
@media (max-width: 64em) {
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 56pt;
|
font-size: 56pt;
|
||||||
|
@ -67,11 +75,14 @@ img.webbutton{
|
||||||
font-size: 26pt;
|
font-size: 26pt;
|
||||||
}
|
}
|
||||||
div.main {
|
div.main {
|
||||||
margin-left: 0vh;
|
margin-top: 35vh;
|
||||||
}
|
}
|
||||||
.container {
|
.container {
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
img.home {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue