-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvideoTextTemplate4.htm
More file actions
91 lines (63 loc) · 1.44 KB
/
videoTextTemplate4.htm
File metadata and controls
91 lines (63 loc) · 1.44 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
<html>
<head>
<title>woot</title>
</head>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=DotGothic16&display=swap" rel="stylesheet">
<style>
body {
margin: 0;
padding: 0;
font-family: 'DotGothic16', sans-serif;
background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/662025/grain.jpg");
background-repeat: round;
background-size: cover;
}
.in {
border: 0px solid #111111;
border-radius: 25px;
border-top-left-radius: 1px;
font-size: 150px;
padding: 20px;
color: #aaaaaa;
max-width: 100%;
text-align: justify;
line-height: 150%;
transform: rotate(-25deg);
filter: saturate(0);
}
.inin {
border: 0px solid #222222;
border-radius: 25px;
border-bottom-right-radius: 1px;
padding: 1%;
max-width: 50%;
transform: rotate(2deg);
filter: saturate(0);
}
.out {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
background-color: red ;
background: repeating-linear-gradient(
45deg,
#111111,
#111111 5px,
#202020 5px,
#202020 10px
);
margin: 0;
mix-blend-mode: multiply;
}
</style>
<body>
<div class="out">
<!-- <div class="mic">🎙️</div> -->
<div class="in">
<div style="font-size:500px; mix-blend-mode: screen;">💥🐧</div>
</div>
</div>
</body>