mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 17:47:26 +00:00
131 lines
2.6 KiB
SCSS
131 lines
2.6 KiB
SCSS
.soon {
|
|
align-items: center;
|
|
background-image: linear-gradient(to right, #60e1ba, #3bc9db 100%);
|
|
background-size: cover;
|
|
color: white;
|
|
display: flex;
|
|
font-size: 1rem;
|
|
font-weight: 300;
|
|
justify-content: center;
|
|
padding: 2rem;
|
|
text-align: center;
|
|
|
|
h1 {
|
|
font-weight: normal;
|
|
line-height: 1.33;
|
|
|
|
@media (min-width: 501px) {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
font-size: 1.5rem;
|
|
}
|
|
}
|
|
|
|
p {
|
|
line-height: 1.55;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
section {
|
|
@media (max-width: 500px) {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
strong {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.mail-submit {
|
|
display: flex;
|
|
font-size: 1rem;
|
|
justify-content: center;
|
|
margin: 0;
|
|
|
|
@media (max-width: 500px) {
|
|
flex-direction: column;
|
|
}
|
|
|
|
button,
|
|
input {
|
|
height: 2.5rem;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
box-shadow: none;
|
|
margin: 0;
|
|
outline: none;
|
|
|
|
@media (max-width: 500px) {
|
|
width: 100%;
|
|
}
|
|
|
|
&:not([type="button"]):not([type="submit"]) {
|
|
padding-right: 1rem;
|
|
padding-left: 1rem;
|
|
transition: border 0.2s;
|
|
|
|
@media (min-width: 501px) {
|
|
flex: 1;
|
|
}
|
|
|
|
&:not(:focus) {
|
|
@media (min-width: 501px) {
|
|
border-top-color: black;
|
|
border-right-color: transparent;
|
|
border-bottom-color: black;
|
|
border-left-color: black;
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
border-top-color: black;
|
|
border-right-color: black;
|
|
border-bottom-color: transparent;
|
|
border-left-color: black;
|
|
}
|
|
}
|
|
|
|
&:focus {
|
|
@media (min-width: 501px) {
|
|
border-top-color: #2f9176;
|
|
border-right-color: transparent;
|
|
border-bottom-color: #2f9176;
|
|
border-left-color: #2f9176;
|
|
}
|
|
|
|
@media (max-width: 500px) {
|
|
border-top-color: #2f9176;
|
|
border-right-color: #2f9176;
|
|
border-bottom-color: transparent;
|
|
border-left-color: #2f9176;
|
|
}
|
|
}
|
|
}
|
|
|
|
&[type="button"],
|
|
&[type="submit"] {
|
|
background-image: none;
|
|
color: white;
|
|
margin: 0;
|
|
padding-right: 1.5rem;
|
|
padding-left: 1.5rem;
|
|
transition: all 0.2s;
|
|
|
|
&:not(:hover) {
|
|
background-color: black;
|
|
border-color: black;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: #38d9a9;
|
|
border-color: #2f9176;
|
|
}
|
|
}
|
|
}
|
|
|
|
.meta {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|