blob: 9e1b59eb4609b10c8a207198bae90995870aa091 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
body {
background-image: url("/img/snowfall.gif");
background-color: rgba(0, 0, 0, 0.25);
background-blend-mode: darken;
}
.holiday-greetings {
display: block;
text-align: center;
color: $green;
font-family: $font_serif;
font-size: 2em;
font-variant-caps: small-caps;
font-weight: 500;
}
.holiday-garland {
display: block;
width: 100%;
height: 65px;
background: url("/img/xmas-garland.gif") repeat-x;
background-position: top;
}
|