mirror of
https://github.com/GeorgeSG/v0.gar.dev
synced 2025-12-28 21:30:29 +00:00
60 lines
776 B
SCSS
60 lines
776 B
SCSS
html,
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: "Verdana", sans-serif;
|
|
font-size: 100%;
|
|
|
|
background: $color-light-gray;
|
|
color: #333;
|
|
}
|
|
|
|
main {
|
|
position: relative;
|
|
width: 400px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
margin-top: 3em;
|
|
margin-bottom: 0;
|
|
font-size: 2em;
|
|
color: $color-dark-blue;
|
|
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.75);
|
|
}
|
|
|
|
p {
|
|
font-size: 0.8em;
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
input {
|
|
-webkit-appearance: none;
|
|
}
|
|
|
|
button:focus,
|
|
input[type="button"] {
|
|
outline: 0 !important;
|
|
}
|
|
|
|
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
|
|
main {
|
|
width: 320px;
|
|
}
|
|
|
|
h1 {
|
|
margin-top: 0.55em;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 799px) {
|
|
main {
|
|
width: 320px;
|
|
}
|
|
|
|
h1 {
|
|
margin-top: 0.55em;
|
|
}
|
|
}
|