phantasma/app/static/css/partials/_contact.scss

55 lines
1 KiB
SCSS
Raw Normal View History

2021-10-27 18:30:05 +05:30
.contact {
2021-10-26 16:47:06 +01:00
max-width: var(--container-lg-width);
margin: 0 auto;
2021-10-27 18:30:05 +05:30
padding: var(--spacing) 0;
2021-10-26 16:47:06 +01:00
h1 {
font-size: 22px;
2021-10-27 16:42:11 +05:30
font-weight: 700;
margin: 0 0 var(--spacing-2) 0;
}
label {
font-size: 18px;
display: block;
padding: 0 0 calc(var(--spacing) / 2) 0;
2021-10-26 16:47:06 +01:00
}
input[type=email], textarea {
background: blue;
color: red;
font-size: 20px;
2021-10-27 16:42:11 +05:30
margin-bottom: var(--spacing-2);
}
input[type=email], input[type=email], textarea {
border: 0;
2021-10-26 16:47:06 +01:00
line-height: 1.3;
2021-10-27 16:42:11 +05:30
display: block;
width: 100%;
2021-10-27 18:30:05 +05:30
@media screen and (min-width: 800px) {
width: 50%;
}
2021-10-26 16:47:06 +01:00
}
2021-10-27 16:42:11 +05:30
2021-10-26 16:47:06 +01:00
textarea {
height: 300px;
}
2021-10-27 16:42:11 +05:30
2021-10-26 16:47:06 +01:00
input[type=submit] {
border: 0;
2021-10-27 16:42:11 +05:30
color: #fff;
background: var(--gradient-body);
font-size: 18px;
font-family: "noto_sans", sans-serif;
font-weight: 700;
padding: var(--spacing) var(--spacing-2);
display: block;
2021-10-27 18:30:05 +05:30
background-size: 400% 100%;
animation: background_animation 60s ease-in-out infinite, text_animation 60s ease-in-out infinite;
2021-10-28 16:58:52 +05:30
cursor: pointer;
2021-10-26 16:47:06 +01:00
}
}