todos-contra-el-fuego-web/imports/ui/pages/Index/Index.scss

83 lines
1.2 KiB
SCSS

@import '../../stylesheets/mixins';
@import '../../stylesheets/colors';
.Index {
padding: 20px;
background: lighten($todos-back1, 75%);
text-align: center;
border-radius: 3px;
color: $todos-font1;
opacity: 0.5;
filter: alpha(opacity=50);
img {
width: 100px;
height: auto;
}
h1 {
font-size: 86px;
text-transform: uppercase;
font-family: 'Roboto';
}
p {
font-size: 18px;
color: lighten($cb-blue, 25%);
}
> div {
display: inline-block;
margin: 10px 0 0;
.btn:first-child {
margin-right: 10px;
}
.btn {
border: none;
}
}
footer {
margin: 20px -20px -20px;
border-top: 1px solid darken($cb-blue, 10%);
padding: 20px;
p {
font-size: 14px;
line-height: 22px;
color: lighten($cb-blue, 35%);
margin: 0;
}
p a {
color: lighten($cb-blue, 35%);
text-decoration: underline;
}
}
}
@include breakpoint(tablet) {
.Index {
padding: 30px;
footer {
margin: 30px -30px -30px;
}
}
}
@include breakpoint(desktop) {
.Index {
padding: 40px;
footer {
margin: 40px -40px -40px;
}
}
}
.android-btn > div {
height: 50px !important;
}