-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
93 lines (91 loc) · 1.82 KB
/
index.html
File metadata and controls
93 lines (91 loc) · 1.82 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
92
93
<html>
<head>
<title>Open Concept Lab</title>
<style>
body {
background: #A2C7EF;
padding: 0;
margin: 0;
font-family: Verdana;
font-size: 9pt;
}
.topbar {
background-color: #3E3E3E;
color: White;
min-height: 35px;
}
.topBar p {
color: #AEAD9B;
letter-spacing: 0.15px;
margin: 0;
padding: 11px 0;
text-align: center;
}
.topBar p strong {
color: #eee;
}
.container {
margin: 0 auto;
}
.rounded {
-moz-border-radius: 12px;
border-radius: 12px;
}
.main {
margin: 0 auto;
margin-top: 100px;
height: 200px;
width: 600px;
background-color:white;
padding: 20px 30px;
}
.main p.title {
font-size:14pt;
}
.main p.sub {
font-size:11pt;
}
#q {
height: 28px;
border: 1px solid #ccc;
width: 100%;
font-size: 10pt;
padding: 8px 6px;
}
#submit {
float: right;
margin-top: 10px;
border: 1px solid #A2C7EF;
background: #eee;
height: 28px;
padding-left: 20px;
padding-right: 20px;
font-size: 10pt;
font-weight: bold;
cursor: pointer;
}
</style>
<script type="text/javascript" src="js/jquery-1.6.4.js"></script>
<script type="text/javascript" src="js/jquery.watermark.js"></script>
</head>
<body>
<div class="topbar">
<div class="container">
<p style="display:none;"><strong>open</strong>.<strong>concept</strong>.<strong>lab</strong> is currently under development.</p>
</div>
</div>
<form name="search" action="http://www.maternalconceptlab.com/search.php" method="GET">
<div class="main rounded">
<p class="title"><b>Open Concept Lab</b> is coming soon...</p>
<p class="sub">In the meantime, check out the <a href="http://www.maternalconceptlab.org/">Maternal Concept Lab</a>.</p>
<p class="sub"><input type="text" name="q" id="q" /><br/>
<input id="submit" type="submit" value="Search" /></p>
</div>
</form>
<script type="text/javascript">
$(document).ready(function() {
$('#q').watermark('MCL:Search');
});
</script>
</body>
</html>