-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeadlines.shtml
145 lines (137 loc) · 3.97 KB
/
deadlines.shtml
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
138
139
140
141
142
143
144
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon">
<link rel="icon" href="./favicon.ico" type="image/x-icon">
<title>Conference Deadlines | Ben Lengerich</title>
<meta name="viewport" content="width=device-width">
<script src="https://use.typekit.net/wxk8bwy.js"></script>
<script>try{Typekit.load({ async: true });}catch(e){}</script>
<link rel="stylesheet" href="./css/grid.css" type="text/css">
<link rel="stylesheet" href="./css/main.css">
<style type="text/css">
/* Some resetting */
body {
font-family: Verdana, Helvetica, sans-serif;
font-size: 12px;
padding: 0;
margin: 0;
background-color: white;
color: #222;
}
/* Main content div */
#surround {
margin-left: auto;
margin-right: auto;
margin-top: 50px;
width: 710px;
background-color: white;
}
/* Div that contains all deadlines */
#deadlinesdiv {
}
#currtime {
font-size: 14px;
}
#bottompart {
text-align: center;
}
/* Page title */
h1 {
display: inline;
margin-right: 10px;
font-size: 35px;
}
/* Maintained by @karpathy */
#signature {
position: absolute;
bottom: auto;
right: 0;
text-align: center;
padding-bottom: 15px;
padding-right: 30px;
/*font-size: 14px;*/
}
/* The cells that contain each deadline */
.dd {
padding: 10px;
margin-bottom: 3px;
background-color: #EEE;
border: 1px solid #DDD;
cursor: pointer;
position: relative;
}
.dd:hover {
background-color: #DDD;
border: 1px solid #AAA;
cursor: default;
}
/* Time left description div */
.tld {
float: right;
font-size: 18px;
font-weight: bold;
margin-top: 16px;
}
/* Area description div */
.ad {
font-family: monospace;
}
/* Time description div */
.td {
}
/* Venue description div */
.vd {
font-weight: bold;
font-size: 16px;
}
/* Warning div */
.wd {
position: absolute;
bottom: 10px;
right: 8px;
color: #700;
font-size: 10px;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.10.6/moment.min.js"></script>
<script type="text/javascript" src="js/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="js/jquery.cookie.js"></script>
<script type="text/javascript" src="js/jquery.csv.js"></script>
<script type="text/javascript" src="js/conferences_db.js"></script>
</head>
<body>
<div id="wrap">
<div id="header"></div>
<article style="text-align:left;">
<div id="surround">
<div style="text-align:center">
<h1>ML+CompBio Conference Deadlines</h1>
<div id="currtime"></div>
<br />
For conferences with an abstract required before the full paper, the abstract deadline is listed.
<br />
<div id="checkboxesdiv"></div>
<!--ML:<input type="checkbox" id="ML" name="ml" onclick="" checked>   
AI:<input type="checkbox" id="AI" onclick="" name="ai" checked>   
CompBio:<input type="checkbox" id="CompBio" name="cb" onclick="" checked>   
Healthcare:<input type="checkbox" id="Healthcare" onclick="" name="hc" checked>-->
<!--Linguistics:<input type="checkbox" id="Linguistics" onclick="" name="lin" checked>-->
<br />
</div>
<div id="deadlinesdiv"></div>
<br />
</div>
<div id="signature">
Created by <a target="_blank" href="https://twitter.com/karpathy">@karpathy</a>, modified by Xun Zheng and me <a target="_blank" href="https://twitter.com/ben_lengerich">(@ben_lengerich)</a>.<br>
This list is not intended to be comprehensive, but please
<br> contact me or add to <a href="https://github.com/blengerich/ConferenceCountdown" target="_blank">the Github repo</a> if you have a suggestion.
</div>
</article>
</div>
<!--#include file="footer.html" -->
</body>
</html>