gull/public/style.css

119 lines
1.8 KiB
CSS
Raw Normal View History

2020-05-13 20:52:18 +02:00
body {
font-family: "Poppins", sans-serif;
font-weight: bold;
font-size: 4em;
2020-05-17 02:44:45 +02:00
margin: 0 auto;
background-color: #fefefe;
color: #171717;
2020-05-17 02:44:45 +02:00
height: 100vh;
2020-05-13 20:52:18 +02:00
animation: fadeIn ease .3s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
2020-05-17 02:44:45 +02:00
main {
padding-bottom: 1em;
}
footer {
height: 2em;
bottom: 0;
padding: .5em 1em .5em;
color: #ff906b;
font-size: .5em;
position: absolute;
}
a {
text-decoration: none;
color: inherit;
}
2020-05-13 20:52:18 +02:00
form {
border: 0;
outline: 0;
width: 100%;
display: block;
box-sizing: border-box;
text-align: left;
}
input {
background: inherit;
font-family: inherit;
font-weight: inherit;
font-size: inherit;
width: inherit;
box-sizing: inherit;
border: inherit;
outline: inherit;
padding: .25em .5em .25em;
2020-05-13 20:52:18 +02:00
}
::placeholder {
opacity: .5;
}
button {
background: inherit;
font-family: inherit;
font-weight: inherit;
font-size: inherit;
border: inherit;
outline: inherit;
cursor: pointer;
padding: .25em .5em .25em;
}
span {
2020-05-17 02:44:45 +02:00
display: inherit;
padding: .25em .5em .25em;
animation: fadeIn ease .3s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
2020-05-13 20:52:18 +02:00
}
.gradient-text {
/* Fallback color */
background-color: #ff906b;
background: linear-gradient(to right, #833ab4, #fd1d1d, #fcb045);
background-repeat: repeat;
background-size: 100%;
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-background-clip: text;
-moz-text-fill-color: transparent;
}
@media screen and (max-width: 55em) {
body {
font-size: 2em;
}
input {
padding: .5em 1em .5em;
}
button {
padding: .5em 1em .5em;
}
span {
padding: .5em 1em .5em;
}
2020-05-17 02:44:45 +02:00
footer {
padding: 1em 2em 1em;
}
}
@keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}