2023-04-08 03:37:20 +00:00
|
|
|
body {
|
|
|
|
background-color: #FCB0B3;
|
|
|
|
color: #25283D;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
height: 100vh;
|
|
|
|
width: 100vw;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-form {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
gap: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cat-img {
|
|
|
|
width: 250px;
|
|
|
|
height: 250px;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cat-img-wrapper {
|
|
|
|
border-radius: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
display: grid;
|
|
|
|
}
|
|
|
|
|
|
|
|
#cat-fact {
|
|
|
|
max-width: 25em;
|
|
|
|
padding: 0 1em;
|
2023-04-11 10:29:21 +00:00
|
|
|
text-align: center;
|
2023-04-08 03:37:20 +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: #49DCB1;
|
|
|
|
border-radius: 1em;
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0.5em 1em;
|
|
|
|
}
|
|
|
|
[type="file"]:focus + label,
|
|
|
|
[type="file"] + label:hover {
|
|
|
|
filter: brightness(1.1);
|
|
|
|
}
|
|
|
|
[type="file"]:focus + label {
|
|
|
|
outline: 1px dotted #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
[type="submit"] {
|
|
|
|
all: unset;
|
|
|
|
background-color: #49DCB1;
|
|
|
|
border-radius: 1em;
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0.5em 1em;
|
|
|
|
}
|
|
|
|
[type="submit"]:focus,
|
|
|
|
[type="submit"]:hover {
|
|
|
|
filter: brightness(1.1);
|
|
|
|
}
|