131 lines
1.9 KiB
CSS
131 lines
1.9 KiB
CSS
@import url("/static/fonts/inter.css");
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: "Inter", sans-serif;
|
|
background-color: #fafafa;
|
|
}
|
|
|
|
.introductionDiv {
|
|
margin-left: 45px;
|
|
margin-right: 45px;
|
|
font-size: 18px;
|
|
margin-top: 70px;
|
|
}
|
|
|
|
.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;
|
|
display: flex;
|
|
overflow-x: scroll;
|
|
}
|
|
.appGrid .app img {
|
|
display: inline;
|
|
margin-top: 5px;
|
|
margin-left: 5px;
|
|
height: calc(100% - 10px);
|
|
border-radius: 12px;
|
|
background-color: #fff;
|
|
}
|
|
.appGrid .app p {
|
|
display: inline;
|
|
font-size: 18px;
|
|
margin-right: 80px;
|
|
transform: translateY(1px);
|
|
}
|
|
.appGrid .app .title {
|
|
transform: translateY(-2px);
|
|
font-size: 20px;
|
|
margin-left: 20px;
|
|
margin-right: 10px;
|
|
display: inline;
|
|
}
|
|
.appGrid .app button {
|
|
background-color: rgb(21, 126, 251);
|
|
border-radius: 12px;
|
|
border: medium;
|
|
position: absolute;
|
|
right: 45px;
|
|
color: white;
|
|
padding: 21px;
|
|
}
|
|
|
|
.menuBar {
|
|
display: flex;
|
|
background-color :rgb(244, 244, 244);
|
|
position: fixed;
|
|
top: 10px;
|
|
left: 10px;
|
|
right: 10px;
|
|
border-radius: 20px;
|
|
padding: 5px;
|
|
}
|
|
|
|
.menuBar a {
|
|
color: black;
|
|
text-decoration: none;
|
|
padding: 15px;
|
|
margin-right: 10px;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.menuBar a:hover {
|
|
background-color: #eee;
|
|
}
|
|
|
|
/* useful stuff */
|
|
|
|
.textcenter {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
|
|
.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;
|
|
}
|