2023-10-06 23:04:31 +00:00
|
|
|
:root {
|
|
|
|
--main-bg-color: #e5f0fc;
|
|
|
|
--fg-color: #449dfc;
|
|
|
|
|
2023-10-07 00:36:27 +00:00
|
|
|
--space-small: 4px;
|
|
|
|
--space-medium: 8px;
|
|
|
|
--space-large: 12px;
|
2023-10-06 23:04:31 +00:00
|
|
|
|
|
|
|
--hover-low: 4px 4px 4px gray;
|
|
|
|
}
|
|
|
|
|
2023-09-19 22:55:53 +00:00
|
|
|
body {
|
|
|
|
font-family: 'Ariel', sans-serif;
|
2023-10-06 23:04:31 +00:00
|
|
|
background-color: var(--main-bg-color);
|
|
|
|
}
|
|
|
|
|
2023-10-07 01:04:27 +00:00
|
|
|
.card {
|
|
|
|
border: 1px solid black;
|
|
|
|
border-radius: 5px;
|
2023-10-07 03:59:02 +00:00
|
|
|
box-shadow: var(--hover-low);
|
2023-10-07 01:04:27 +00:00
|
|
|
margin: var(--space-large);
|
|
|
|
padding: var(--space-medium);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-10-06 23:04:31 +00:00
|
|
|
.authentication-page {
|
|
|
|
display: flex;
|
2023-10-07 00:36:27 +00:00
|
|
|
flex-direction: column;
|
2023-10-06 23:04:31 +00:00
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
height: 200px;
|
2023-10-26 04:03:49 +00:00
|
|
|
margin: 8px;
|
2023-10-06 23:04:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.authentication-form {
|
|
|
|
}
|
|
|
|
|
|
|
|
.authentication-form__label {
|
2023-10-07 00:36:27 +00:00
|
|
|
margin: var(--space-small);
|
2023-10-06 23:04:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.authentication-form__input {
|
2023-10-07 00:36:27 +00:00
|
|
|
margin: var(--space-small);
|
2023-09-19 22:55:53 +00:00
|
|
|
}
|
|
|
|
|
2023-10-07 00:36:27 +00:00
|
|
|
.gallery-page {
|
2023-09-19 22:55:53 +00:00
|
|
|
display: flex;
|
2023-10-07 01:04:27 +00:00
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload-form {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2023-09-19 22:55:53 +00:00
|
|
|
}
|
|
|
|
|
2023-10-07 03:51:41 +00:00
|
|
|
.upload-form__selector {
|
|
|
|
margin: var(--space-small);
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload-form__button {
|
|
|
|
margin: var(--space-small);
|
|
|
|
}
|
|
|
|
|
2023-10-07 00:36:27 +00:00
|
|
|
.gallery {
|
2023-09-19 22:55:53 +00:00
|
|
|
display: flex;
|
2023-10-07 01:04:27 +00:00
|
|
|
flex-wrap: wrap;
|
2023-09-19 22:55:53 +00:00
|
|
|
}
|
|
|
|
|
2023-10-07 00:36:27 +00:00
|
|
|
.thumbnail {
|
2023-10-07 03:59:02 +00:00
|
|
|
width: 300px;
|
2023-10-07 00:36:27 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.thumbnail__image {
|
2023-09-19 22:55:53 +00:00
|
|
|
max-width: 100%;
|
2023-10-07 00:36:27 +00:00
|
|
|
border: none;
|
2023-09-19 22:55:53 +00:00
|
|
|
}
|
|
|
|
|
2023-10-25 14:20:14 +00:00
|
|
|
.thumbnail__metadata {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
2023-10-07 00:36:27 +00:00
|
|
|
/*
|
2023-09-19 22:55:53 +00:00
|
|
|
[type="submit"] {
|
|
|
|
border-radius: 1em;
|
|
|
|
margin: 1em;
|
|
|
|
padding: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.uploadform {
|
|
|
|
}
|
2023-10-07 00:36:27 +00:00
|
|
|
*/
|
2023-09-19 22:55:53 +00:00
|
|
|
|
2023-10-07 00:36:27 +00:00
|
|
|
/*
|
2023-09-19 22:55:53 +00:00
|
|
|
[type="file"] {
|
|
|
|
border: 0;
|
|
|
|
clip: rect(0, 0, 0, 0);
|
|
|
|
height: 1px;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0;
|
|
|
|
position: absolute !important;
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
[type="file"] + label {
|
|
|
|
background-color: rgb(0, 86, 112);
|
|
|
|
border-radius: 1em;
|
|
|
|
color: #fff;
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 1em;
|
|
|
|
margin: 1em;
|
|
|
|
transition: background-color 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
[type="file"]:focus + label,
|
|
|
|
[type="file"] + label:hover {
|
|
|
|
background-color: #67b0ff;
|
|
|
|
}
|
|
|
|
|
|
|
|
[type="file"]:focus + label {
|
|
|
|
outline: 1px dotted #000;
|
|
|
|
outline: -webkit-focus-ring-color auto 5px;
|
|
|
|
}
|
2023-10-07 00:36:27 +00:00
|
|
|
*/
|
2023-09-19 22:55:53 +00:00
|
|
|
|
2023-10-07 19:24:12 +00:00
|
|
|
@media screen and (max-width: 1080px) { /* This is the screen width of a OnePlus 8 */
|
2023-09-19 22:55:53 +00:00
|
|
|
body {
|
|
|
|
font-size: xx-large;
|
|
|
|
}
|
|
|
|
|
2023-10-07 03:59:02 +00:00
|
|
|
.authentication-form {
|
|
|
|
width: 100%;
|
2023-10-26 04:03:49 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
.authentication-form__input {
|
|
|
|
font-size: x-large;
|
|
|
|
}
|
|
|
|
|
|
|
|
.authentication-form__button {
|
|
|
|
font-size: x-large;
|
2023-10-07 03:59:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.upload-form__selector {
|
|
|
|
font-size: larger;
|
|
|
|
}
|
|
|
|
|
|
|
|
.upload-form__button {
|
|
|
|
font-size: larger;
|
|
|
|
}
|
|
|
|
|
|
|
|
.thumbnail {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2023-09-19 22:55:53 +00:00
|
|
|
[type="submit"] {
|
|
|
|
font-size: xx-large;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.uploadform {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
[type="file"] + label {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.thumbnail {
|
|
|
|
max-width: 100%;
|
|
|
|
margin: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.file {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2023-10-07 03:59:02 +00:00
|
|
|
*/
|
2023-09-19 22:55:53 +00:00
|
|
|
}
|