Files
v0.gar.dev/assets/styles/main.scss

70 lines
885 B
SCSS

/*
Colors: ;
Light Blue: #19C4FF
Dark Blue: #0085B2
Light Orange: #FF8F19
Dark Orange: #B26009
Light Gray: #f5f5f5
*/
html, body {
margin: 0; padding: 0;
font-family: "Verdana", sans-serif;
font-size: 100%;
background: #f5f5f5;
color: #333;
}
main {
position: relative;
width: 400px;
margin: 0 auto;
text-align: center;
}
h1 {
margin-top: 3em;
margin-bottom: 0;
font-size: 2em;
color: #0085B2;
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;
}
}