forked from vercel/og-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
local_test.html
51 lines (50 loc) · 1 KB
/
local_test.html
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
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>Generated Image</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
html {
margin: 0;
padding: 0;
}
body {
margin: 0;
background: linear-gradient(165deg, rgba(8,174,234,1) 0%, rgba(42,245,152,1) 100%);
height: 100vh;
display: flex;
flex-direction: column;
padding: 5vh;
}
.title_container {
font-family: 'Montserrat', sans-serif;
font-size: 80px;
font-style: italic;
font-weight: 900;
color: #000;
line-height: 1;
flex: 1;
}
.title {
border-left: 20px solid black;
padding: 5vh;
}
.logo {
text-align: right;
}
.logo img {
height: 75px;
}
</style>
<body>
<div class="title_container">
<div class="title">3 Passi Per Aumentare La Propria Produttività</div>
</div>
<div class="logo">
<img src="logo_ff_black.png" />
</div>
</body>
</html>