mirror of
https://github.com/PretendoNetwork/website.git
synced 2025-04-02 11:11:50 -04:00
95 lines
1.6 KiB
CSS
95 lines
1.6 KiB
CSS
.localization-wrapper {
|
|
width: 100%;
|
|
min-height: calc(100vh - 155px);
|
|
margin: 0;
|
|
text-align: left;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.localization-widget {
|
|
max-width: 600px;
|
|
width: 100%;
|
|
}
|
|
|
|
.caption {
|
|
color: var(--text-shade-1);
|
|
max-width: 400px;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.title.dot {
|
|
margin: 0;
|
|
}
|
|
|
|
.localization-instr,
|
|
.localization-instr:visited {
|
|
display: flex;
|
|
align-items: center;
|
|
color: var(--accent-shade-2);
|
|
text-decoration: none;
|
|
position: relative;
|
|
left: -4px;
|
|
width: fit-content;
|
|
}
|
|
|
|
.localization-instr svg {
|
|
height: 1.3em;
|
|
margin-right: 4px;
|
|
}
|
|
|
|
.localization-form {
|
|
padding: 36px;
|
|
background-color: var(--bg-shade-0);
|
|
border-radius: 12px;
|
|
margin-top: 36px;
|
|
}
|
|
|
|
.input-wrapper {
|
|
display: flex;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.localization-form input {
|
|
appearance: none;
|
|
-webkit-appearance: none;
|
|
border: 0;
|
|
font-family: Poppins, Arial, Helvetica, sans-serif;
|
|
font-size: 1rem;
|
|
background-color: var(--bg-shade-3);
|
|
border: none;
|
|
border-radius: 4px 0 0 4px;
|
|
padding: 12px 24px;
|
|
color: var(--text-shade-1);
|
|
width: 20px;
|
|
flex: 2 10%;
|
|
}
|
|
|
|
.localization-form input::placeholder {
|
|
color: var(--text-shade-0);
|
|
}
|
|
|
|
.localization-form input:focus {
|
|
background-color: var(--bg-shade-4);
|
|
color: var(--bg-shade-3);
|
|
transition: 200ms;
|
|
outline: none;
|
|
}
|
|
|
|
.localization-form button {
|
|
appearance: none;
|
|
-webkit-appearance: none;
|
|
border: 0;
|
|
border-radius: 0 4px 4px 0;
|
|
font-family: Poppins, Arial, Helvetica, sans-serif;
|
|
font-size: 1rem;
|
|
color: var(--text-shade-3);
|
|
padding: 12px 36px;
|
|
background: var(--accent-shade-0);
|
|
cursor: pointer;
|
|
}
|
|
|
|
footer {
|
|
margin-top: auto;
|
|
}
|