-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (60 loc) · 1.31 KB
/
style.css
File metadata and controls
70 lines (60 loc) · 1.31 KB
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
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
background-color: #d9534f; /* Darker red background color */
color: #fff;
background-image: url("background.jpeg");
background-size: 380px;
font-size: large;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 40px;
text-align: center;
}
header {
margin-bottom: 30px;
}
.title {
font-size: 36px;
font-weight: bold;
margin-bottom: 10px;
}
#christmas-tree {
background: url('christtree.jpg') no-repeat center center;
background-size: contain;
height: 300px; /* Adjust the size of the Christmas tree */
margin-bottom: 30px;
}
.message {
font-size: 20px;
line-height: 1.6;
}
.toggleButton
{
font-family: 'Mountains of Christmas', cursive;
cursor: pointer;
background-color: lightcyan;
color: red;
font-size: 20px;
padding: 5px 10px 5px 10px;
border-radius: 8px;
display: inline-block;
margin: 4px 2px;
cursor: pointer;
}
#extraContent
{
display: none;
}
body.snowfall {
font-family: 'Mountains of Christmas', cursive;
}
footer {
background-color: #222;
color: #fff;
padding: 10px;
text-align: center;
}