-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
43 lines (36 loc) · 905 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Example 02.05 - Custom geometry</title>
<link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<style>
html, body{
background-color: #5AC2E7;
height: 100%;
width: 100%;
overflow: hidden;
font-family: 'Open Sans', sans-serif;
font-size: 40px;
color: white;
}
#all {
height: 100vh;
}
#info {
height: 100%;
padding: 25px;
color: #5AC2E7;
background-color: #FFF;
}
</style>
</head>
<body>
<div class="row" id="all">
<div class="col-sm-6" id="diagram">
Go to <a href="abstract.html">Abstract KB Attempt</a>.
</div>
<div class="col-sm-6" id="info">
</div>
</div>
</body>
</html>