Added static files.

This commit is contained in:
2023-07-30 20:31:34 -04:00
parent 605f5bcd6a
commit 306def68d6
6 changed files with 93 additions and 1 deletions

View File

@@ -0,0 +1,92 @@
/****************************************************************************
* Containers. *
****************************************************************************/
.centered-container {
width: 100%;
text-align: center;
margin-bottom: 0.5em;
}
.background {
background-color: lightgray;
}
.image-container {
height: 75vh;
}
/****************************************************************************
* Content. *
****************************************************************************/
.image {
height: 100%;
}
/****************************************************************************
* Grid. *
****************************************************************************/
.grid-container {
display: flex;
flex: 1;
}
.grid {
max-width: 1920px;
margin: 0 auto;
display: grid;
grid-gap: 1rem;
grid-template-rows: auto auto 1fr 1fr 1fr auto auto;
}
.grid-icon {
text-align: center;
}
.column {
flex-direction: column;
text-align: center;
border: black 1px solid;
}
/****************************************************************************
* Media queries. *
****************************************************************************/
@media (min-width: 700px) {
.grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (min-width: 900px) {
.grid {
grid-template-columns: repeat(3, 1fr);
}
}
@media (min-width: 1024px) {
.grid {
grid-template-columns: repeat(5, 1fr);
}
}
@media (min-width: 1280px) {
.grid {
grid-template-columns: repeat(7, 1fr);
}
}
@media (min-width: 1440px) {
.grid {
grid-template-columns: repeat(9, 1fr);
}
}
@media (min-width: 1800px) {
.grid {
grid-template-columns: repeat(11, 1fr);
}
}

BIN
viewer/static/imgs/back.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

BIN
viewer/static/imgs/gohome.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB