Spaces:
Sleeping
Sleeping
File size: 670 Bytes
3e12d11 | 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 | /*-- scss:defaults --*/
$link-color: #39729E;
$text-muted: #6a737b;
/*-- scss:rules --*/
.layout-example {
background: $gray-500;
color: $white;
text-align: center;
margin-bottom: 1em;
font-family: $font-family-monospace;
font-size: .875em;
font-weight: 600;
padding-top: 1em;
border-radius: 3px;
}
.left {
text-align: left;
padding-left: 1em;
}
.right {
text-align: right;
padding-right: 1em;
}
.hello-quarto-banner h1 {
margin-top: 0;
margin-bottom: 0.5rem;
}
#quarto-announcement {
padding: 1em;
font-size: 1em;
font-weight: bold;
color: $white;
background-color: #447099;
}
#quarto-announcement a {
color: $white;
}
|