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.
burgerstore/static/css/style.css

99 lines
1.4 KiB
CSS
Raw Normal View History

2024-03-08 21:43:55 +00:00
@import url("static/fonts/inter.css");
body {
margin: 0;
font-family: "Inter", sans-serif;
background-color: #fafafa;
}
.introductionDiv {
margin-left: 45px;
font-size: 18px;
}
.appGrid {
margin-left: 45px;
margin-right: 45px;
}
.appGrid .app {
width: 100%;
height: 60px;
white-space: nowrap;
border-radius: 12px;
background-color: rgb(244, 244, 244);
margin-bottom: 7.5px;
}
.appGrid .app img {
display: inline;
margin-top: 5px;
margin-left: 5px;
height: calc(100% - 10px);
border-radius: 12px;
}
.appGrid .app p {
position: absolute;
display: inline;
font-size: 18px;
transform: translate(62.5px,-47.5px);
}
.appGrid .app .title {
position: absolute;
transform: translate(7.5px, -12.5px);
font-size: 20px;
display: inline;
}
.appGrid .app button {
position: absolute;
color: white;
padding: 12px;
padding-left: 17.5px;
padding-right: 17.5px;
background-color: #157efb;
border: none;
border-radius: 12px;
right: 52.5px;
transform: translate(0px, -50px);
}
/* useful stuff */
.hidden {
display: none !important;
}
.w100 {
font-weight: 300;
}
.w200 {
font-weight: 300;
}
.w300 {
font-weight: 300;
}
.w400 {
font-weight: 400;
}
.w500 {
font-weight: 500;
}
.w600 {
font-weight: 600;
}
.w700 {
font-weight: 700;
}
.w800 {
font-weight: 800;
}
.w900 {
font-weight: 900;
}