Init
This commit is contained in:
parent
b611ea814d
commit
c4348fab52
|
@ -0,0 +1,29 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<head>
|
||||||
|
<link rel="stylesheet" type="text/css" href="/styles.css" media="">
|
||||||
|
</head>
|
||||||
|
<body style="">
|
||||||
|
<li style="margin-top: 50px;margin-bottom: 20px;"><img src="https://hectabit.org/assets/img/hectabit.svg" style="max-height: 200px;"></li>
|
||||||
|
<li><h>Welcome to BurgerStore</h></li>
|
||||||
|
<li style="margin-top: 20px;">
|
||||||
|
<div class="container">
|
||||||
|
<img style="height: 55px;" src="https://notes.hectabit.org/static/svg/flathubdark.svg">
|
||||||
|
<img style="height: 55px;" src="https://notes.hectabit.org/static/svg/flathubdark.svg">
|
||||||
|
<img style="height: 55px;" src="https://notes.hectabit.org/static/svg/flathubdark.svg">
|
||||||
|
<img style="height: 55px;" src="https://notes.hectabit.org/static/svg/flathubdark.svg">
|
||||||
|
<img style="height: 55px;" src="https://notes.hectabit.org/static/svg/flathubdark.svg">
|
||||||
|
<img style="height: 55px;" src="https://notes.hectabit.org/static/svg/flathubdark.svg">
|
||||||
|
<img style="height: 55px;" src="https://notes.hectabit.org/static/svg/flathubdark.svg">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</li>
|
||||||
|
<div class="burgerbox">
|
||||||
|
<li><img src="https://www.designyourway.net/drb/wp-content/uploads/2017/04/Nature-Wallpaper-Desktop-Background-101-1-1600x900.jpg" style="position: static;"></li>
|
||||||
|
<li><h>BurgerNotes</h></li>
|
||||||
|
<li><p>iOS: v1.0</p></li>
|
||||||
|
<li><p style="">Android: v1.0</p></li>
|
||||||
|
<li><p>Linux: v1.0</p></li>
|
||||||
|
<li><p>Web: v1.0</p></li><a href="https://hectabit.org" style="background-color: lightblue;display: flex;height: 100%;text-align: center;flex-direction: column;justify-content: center;margin: 5px;border-radius: 8px;text-decoration: none;color: black;font-size: 20px;">Get</a>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</body>
|
|
@ -0,0 +1,66 @@
|
||||||
|
body {
|
||||||
|
background-color: #fffed4;
|
||||||
|
text-align: center;
|
||||||
|
list-style: none;
|
||||||
|
font-family: Arial, Sans Serif;
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
h {
|
||||||
|
font-size: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
max-height: 200px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
padding-top: 5px;
|
||||||
|
border-top: solid 1px black;
|
||||||
|
border-bottom: solid 1px black;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-evenly;
|
||||||
|
padding-bottom: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.burgerbox {
|
||||||
|
margin-top: 20px;
|
||||||
|
width: 250px;
|
||||||
|
height: 400px;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
margin-left: 7vh;
|
||||||
|
margin-right: 7vh;
|
||||||
|
border-style: solid;
|
||||||
|
border-image: none;
|
||||||
|
border-radius: 8px;
|
||||||
|
border-width: 1px;
|
||||||
|
background-color: white;
|
||||||
|
font-size: 17px;
|
||||||
|
overflow-x: hidden;
|
||||||
|
text-align: left;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
|
||||||
|
.burgerbox h {
|
||||||
|
padding-left: 10px;
|
||||||
|
font-size: 25px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.burgerbox p {
|
||||||
|
padding-left: 10px;
|
||||||
|
margin: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.getbutton {
|
||||||
|
background-color: lightblue;
|
||||||
|
display: flex;
|
||||||
|
height: 100%;
|
||||||
|
text-align: center;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
margin: 5px;
|
||||||
|
border-radius: 8px;
|
||||||
|
text-decoration: none;
|
||||||
|
color: black;
|
||||||
|
}
|
Reference in New Issue