28 lines
485 B
SCSS
28 lines
485 B
SCSS
.page-home {
|
|
text-align: center;
|
|
.title {
|
|
font-weight: lighter;
|
|
font-family: $font-family-base;
|
|
}
|
|
p {
|
|
margin: 0 auto;
|
|
font-size: 1.2rem;
|
|
font-weight: lighter;
|
|
margin-bottom: 40px;
|
|
@include media-breakpoint-up(md) {
|
|
width: 80%;
|
|
}
|
|
@include media-breakpoint-up(lg) {
|
|
width: 60%;
|
|
}
|
|
}
|
|
.terminal {
|
|
border-radius: 3px;
|
|
margin: 0 auto;
|
|
margin-top: -200px;
|
|
img {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
}
|
|
}
|