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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
.home {
section {
padding: 90px 0 80px;
// Offset so that the title is not hidden behind the nav bar
>[id]:before {
display: block;
content: " ";
margin-top: -75px;
height: 75px;
visibility: hidden;
}
pre {
background-color: white;
border-color: #e7e7e7;
box-shadow: 0 2px 6px #e7e7e7;
margin-bottom: 15px;
}
}
section.odd {
background-color: @background-colored;
pre {
background-color: white;
border-color: #D8D8D8;
}
hr {
border-color: #D8D8D8;
}
}
h2 {
text-align: center;
margin-top: 0;
margin-bottom: 40px;
color: @brand-primary;
a:hover, a:active {
text-decoration: none;
}
}
h4 {
text-transform: uppercase;
font-size: 16px;
.read-more {
.pull-right;
text-transform: none;
font-size: 13px;
}
}
.jumbotron {
background: none;
text-align: center;
padding: 70px 0;
h1 {
margin-bottom: 25px;
strong {
color: @brand-primary;
}
}
p {
font-size: 150%;
margin-bottom: 35px;
}
}
.framework-integrations {
text-align: center;
.thumbnail {
padding-top: 20px;
}
img {
height: 70px;
}
h4 {
font-size: 15px;
}
}
}
|