This repository has been archived on 2024-10-20. You can view files and clone it, but cannot push or open issues or pull requests.
2024-03-08 20:08:22 +00:00
|
|
|
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;
|
2024-03-08 20:25:51 +00:00
|
|
|
overflow-x: scroll;
|
2024-03-08 20:08:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.burgerbox {
|
|
|
|
margin-top: 20px;
|
|
|
|
width: 250px;
|
|
|
|
height: 400px;
|
|
|
|
margin-bottom: 10px;
|
2024-03-08 20:19:01 +00:00
|
|
|
margin-left: 3.5vh;
|
|
|
|
margin-right: 3.5vh;
|
2024-03-08 20:08:22 +00:00
|
|
|
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;
|
|
|
|
}
|
2024-03-08 20:24:59 +00:00
|
|
|
|
|
|
|
.appcontainer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.burgerbutton {
|
|
|
|
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;
|
|
|
|
}
|