blob: a0a97977f74bef004fabb9b233c4bcb50fe2fc64 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
.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;
}
}
}
|