forked from DPrinceKumar/HacktoberFest2020-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhactoberfest.html
72 lines (69 loc) · 1.98 KB
/
hactoberfest.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hacktoberfest2020</title>
<style>
body{
padding: 0;
margin: 0;
background:url(back.jpg) no-repeat center center fixed;
background-size: cover;
}
.container{
height: 210px;
width: 600px;
position: relative;
margin:auto;
left:0;
right:0;
top:310px;
bottom:0;
background-color:rgba(22, 22, 22, 0.3);
backdrop-filter: blur(12px);
color:#bfe6ff;
text-align: center;
}
.tee{
background:url(tee.jpg) no-repeat center center fixed;
background-size: contain;
height: 600px;
width: 600px;
position: absolute;
margin:auto;
left:0;
right:0;
top:0;
bottom:0;
border-radius: 10px;
overflow: hidden;
}
blockquote{
font-size: 20px;
font-weight: 700;
letter-spacing: 0.5px;
line-height: 30px;
padding: 25px 50px;
margin: 35px 20px;
}
.link{
text-decoration: none;
color:#ca618b;
font-size: 25px;
}
.link:hover{
color:#f89bc0;
text-decoration: underline;
}
</style>
</head>
<body>
<div class="tee">
</div>
<div class="container">
<h3></h3><blockquote>Hacktoberfest is a month long celebration of Open Source Community organized by DigitalOcean every year. Join this celebration and start contributing today!
Log in to <a class="link" href="https://hacktoberfest.digitalocean.com/">hactoberfest.digitalocean.com</a>
</h3></blockquote> </div>
</body>
</html>