html {
font-size: 62.5%;
@include large-only {
font-size: 60%;
}
@include desktop-only {
font-size: 55%;
}
@include tablet-only {
font-size: 50%;
}
@include mobile-only {
font-size: 45%;
}
}
img {
max-width: 100%;
max-height: 100%;
}
h1, h2, h3, h4, h5, h6 {
}
li, p, a, select, option {
}
p {
font-size: 2.0rem;
}
.bold {
font-weight: bold;
}
a:hover {
text-decoration: none;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
outline: none;
}
.hidden {
display: none;
}
.success-post {
color: $green;
border: 2px solid $green;
text-align: center;
padding: 15px;
margin-top: 50px;
margin-bottom: 50px;
}