-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHp_p5.php
More file actions
112 lines (94 loc) · 2.35 KB
/
Hp_p5.php
File metadata and controls
112 lines (94 loc) · 2.35 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
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
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./favicon.svg" type="image/svg+xml">
<title>Harry Potter...</title>
<link href="https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&family=Poppins:wght@400;500;600&display=swap" rel="stylesheet">
<style>
:root {
/**
* colors
*/
--chinese-violet_30: hsla(304, 14%, 46%, 0.3);
--chinese-violet: hsl(304, 14%, 46%);
--sonic-silver: hsl(208, 7%, 46%);
--old-rose_30: hsla(357, 37%, 62%, 0.3);
--ghost-white: hsl(233, 33%, 95%);
--light-pink: hsl(357, 93%, 84%);
--light-gray: hsl(0, 0%, 80%);
--old-rose: hsl(357, 37%, 62%);
--seashell: hsl(20, 43%, 93%);
--charcoal: hsl(203, 30%, 26%);
--white: hsl(0, 0%, 100%);
/**
* typography
*/
--ff-philosopher: 'Philosopher', sans-serif;
--ff-poppins: 'Poppins', sans-serif;
--fs-1: 4rem;
--fs-2: 3.2rem;
--fs-3: 2.7rem;
--fs-4: 2.4rem;
--fs-5: 2.2rem;
--fs-6: 2rem;
--fs-7: 1.8rem;
--fw-500: 500;
--fw-700: 700;
/**
* spacing
*/
--section-padding: 80px;
/**
* shadow
*/
--shadow-1: 4px 6px 10px hsla(231, 94%, 7%, 0.06);
--shadow-2: 2px 0 15px 5px hsla(231, 94%, 7%, 0.06);
--shadow-3: 3px 3px var(--chinese-violet);
--shadow-4: 5px 5px var(--chinese-violet);
/**
* radius
*/
--radius-5: 5px;
--radius-10: 10px;
/**
* clip path
*/
--polygon: polygon(100% 29%,100% 100%,19% 99%,0 56%);
/**
* transition
*/
--transition-1: 0.25s ease;
--transition-2: 0.5s ease;
--cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
}
.btns{
height: 30px;
width: 10%;
color: #C27A7E;
background-color: #FFFFFF;
text-transform: uppercase;
letter-spacing: 2px;
border: 1px solid #C27A7E;
font-family: var(--ff-philosopher);
display: inline-block;
}
.btns:hover {
animation-name: btn-hov;
animation-duration: 550ms;
animation-fill-mode: forwards;
}
@keyframes btn-hov {
100% {
background-color: #C27A7E;
color: #FFFFFF;
transform: scale(1.05);
}
}
</style>
</head>
<body>
<iframe src="https://publuu.com/flip-book/386653/877427/page/1?embed" width="100%" height="680" scrolling="no" frameborder="0" allowfullscreen="" allow="clipboard-write" class="publuuflip"></iframe>
</body>
</html>