-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
backcover.css
107 lines (90 loc) · 2.41 KB
/
backcover.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*Red title and Credit to HB font*/
@import url("https://rawcdn.githack.com/5e-Cleric/fonts-/6ff92242119b0024c605ae83a45f87dbc2cff366/extradndfonts.css");
/*After the fonts goes all the code*/
.BackCover {
position:absolute;
top:0px;
left:-20px;
height:100%;
width:420px;
background-image:url(https://i.imgur.com/zi4SkEt.png); /*Sets the Black half page cover*/
background-position:bottom center;
background-repeat:no-repeat;
background-size:cover;
}
.BackCover h1+p::first-letter{ /*Unsets the drop cap*/
all:unset;
}
.BackCover h1+p::first-line{ /*Unsets the small caps first line*/
all:unset;
}
.BackCover h1 { /*Back Title, red caps*/
position:relative;
min-width:400px;
padding-top:90px;
padding-right:80px;
padding-left:70px;
margin-bottom:15px;
font-size:400%;
font-family:nodesto_caps_condensed_bold-webfont;
color:#ED1C24 ;
font-variant:small-caps;
}
.block.BackCover p { /*configures how normal text will be*/
padding-left:55px;
padding-right:75px;
color:#fff
}
.BackCover img { /*Sets your bakcground image, you will likely have to change this values for your own image*/
position:absolute;
top:0px;
left:0px;
height:1056px;
z-index: -1;
}
.page .BackCover hr {
position: relative;
top: 35px;
height: 4em;
width: 230px;
visibility: visible;
margin: auto;
background-image : url(https://i.imgur.com/U4Cveto.png);
background-size: 100% 50%;
background-repeat: no-repeat;
border: none;
}
.page .BackCover hr+p {
padding-left:100px;
padding-right:100px;
font-family: "martel_sansextrabold";
text-align:center;
margin-top:30px;
}
.Made{
min-height:200px;
filter:invert(100%);
background-image:url(https://i.imgur.com/r7nvH4z.png); /*Sets the HB cauldron, please leave this as is or change it's size, but do not delete it as we should give them appropiate credit*/
background-blend-mode:multiply;
background-position:middle center;
background-repeat:no-repeat;
background-size:30%;
position:absolute;
left:35%;
bottom:10px;
padding-right:160px;
}
.Made:before {
filter:invert(100%);
Position:absolute;
bottom:210px;
left:-22px;
content:"Made with The Homebrewery"; /*sets the credit line: made with the homebrewery*/
color:#fff;
font-family:nodesto_caps_condensed_bold-webfont;
font-size:150%;
-webkit-transform:scale(1.6, 1.0);
}
.page#p1:after{ /*Unsets the golden line at the end of the page for page 1(#p1)*/
all:unset;
}