-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (56 loc) · 1.04 KB
/
style.css
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
@font-face {
font-family: "NightMare";
src: url("assets/fonts/nightmare.ttf");
}
@font-face {
font-family: "bfhorror";
src: url("assets/fonts/Beautiful Horror.ttf");
}
* {
margin: 0;
padding: 0;
}
body {
font-family: "NightMare";
background: url("assets/images/nbc-wallpaper.png") top fixed border-box;
background-color: #333;
background-repeat: no-repeat;
background-size: cover;
}
body, main {
text-align: center;
}
main {
width: 500px;
margin: auto;
margin-top: 100px;
padding: 50px;
}
.frame {
height: 60px;
padding: 5px;
margin: 10px 0;
font-size: 40px;
background: antiquewhite;
box-shadow: -3px -2px 5px #333333 inset;
}
#xmas {
/*display: none; */
position: relative;
top: -70px;
right: -80px;
padding: 5px;
font-size: 65px;
color: red;
background: whitesmoke;
transform: rotate(-5deg);
box-shadow: 5px 5px 5px #333333;
}
#legend {
width: 400px;
margin: auto;
margin-top: 10px;
}
button {
margin-top: 30px;
}