-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
137 lines (118 loc) · 3.7 KB
/
index.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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="Sign up and get matched with another foundary for a virtual dinner over Zoom.">
<meta name="keywords" content="Founding, founders, team, zoom, coronavirus">
<meta name="author" content="Battlecard">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta property="og:title" content="Dinner Combinator by Battlecard">
<meta property="og:description" content="Sign up and get matched with another foundary for a virtual dinner over Zoom.">
<meta property="og:image" content="http://dinnercombinator.com/preview.png">
<meta property="og:url" content="http://dinnercombinator.com">
<style>
@import url('https://fonts.googleapis.com/css?family=Ibarra+Real+Nova:400,400i,600,600i,700,700i&display=swap');
</style>
<link href="https://fonts.googleapis.com/css?family=Ibarra+Real+Nova&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.typekit.net/gvk4beu.css">
<link rel="icon" href="./favicon.ico" type="image/ico" sizes="256x256">
<title>Dinner Combinator | Get Dinner With Other Foundaries</title>
<style>
body {
margin: 0px;
padding: 0px;
background: linear-gradient(180deg, #FFFFFF 0%, #FFF3ED 100%);
display:inline-block;
width: 100%;
height: 100vh;
box-sizing:border-box;
font-family: "Brother 1816", "Brother-1816", brother-1816, Arial;
text-align:center;
}
#logo {
display:inline-block;
margin-top: 40px;
height: 40px;
}
#battlecard {
display:inline-block;
margin-top:18px;
height: 24px;
}
#battlecard:hover {
opacity:.5;
}
h1 {
color:#FFAC4B;
font-family: "Ibarra Real Nova", Times;
font-weight: 600;
font-size: 40px;
margin-top: 40px;
margin-bottom: 5px;
width: 90%;
margin-left: 5%;
}
h2 {
color:black;
font-family: "Brother 1816", "Brother-1816", brother-1816, Arial;
font-weight: 300;
font-size: 19px;
margin-top: 0px;
width: 90%;
margin-left: 5%;
}
.button {
padding: 12px 42px;
color:white;
font-weight: 600;
background-color:#FFAC4B;
display:inline-block;
border-radius: 5px;
margin-top: 20px;
margin-bottom: 40px;
cursor:pointer;
text-decoration: none;
}
.button:hover {
opacity:.7;
}
#graphic {
height: 270px;
}
.notice {
position: fixed;
bottom: 0px;
width: 100%;
left:0px;
height: 40px;
padding-top: 8px;
box-sizing:border-box;
color:white;
background-color:#FFAC4B;
}
@media screen and (max-width: 800px){
h1 {
font-size: 36px;
}
h2 {
font-size: 17px;
}
.notice {
font-size: 14px;
padding-top: 10px;
height: 66px;
}
}
</style>
</head>
<body>
<img src="./logo.png" id="logo">
<br>
<a href="https://battlecard.com"><img src="./battlecard.png" id="battlecard"></a>
<h1>Social Virtual Dinners for Founding Teams</h1>
<h2>Deadline has passed but sign up to be matched for next week's social dinners! </h2>
<a class="button" href="https://mathew901813.typeform.com/to/vLjGMo">Sign Up</a>
<br>
<img src="./graphic.png" id="graphic">
<div class="notice">*while Battlecard is a YCombinator W20 company, this project is not directly affiliated with YCombinator.</div>
</body>
</html>