-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathgrid-test.php
More file actions
executable file
·78 lines (68 loc) · 1.8 KB
/
grid-test.php
File metadata and controls
executable file
·78 lines (68 loc) · 1.8 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
<!doctype html>
<!--
Name: Skip
Owner: VillageTech Solutions (villagetechsolutions.org)
Date: 2015 03
Revision: Looma 2.0.0
File: index.php [home page for Looma]
Description: displays all the classes and on-click, all the subjects, plus toolbar for other pages
-->
<?php $page_title = 'Looma Grid Page';
include ('includes/header.php');
//include ('includes/mongo-connect.php');
define ("CLASSES", 8);
?>
<style>
body {background-color:pink;}
#main-container{
padding:2vh 2vh 2vh 2vh;
display:grid;
grid-gap:2vh;
grid-template-columns: 33vw 64vw;
grid-template-rows: 5vh 20vh 50vh 15vh;
background-color:red;
}
#main-container > div {
border-radius:4px;
border: 2px solid blue;
background-color: yellow;
color:green;
}
#header {
grid-column: 1/-1;
grid-row: 1;
}
#search-bar {
grid-column: 1/-1;
grid-row: 2;
}
#results-div {
grid-column: 1;
grid-row: 3;
}
#preview-panel {
grid-column: 2/-1;
grid-row: 3;
}
#timeline {
grid-column: 1/-1;
grid-row: 4;
}
</style>
</head>
<body>
<section>
<div id="main-container">
<img src="images/logos/LoomaLogoTransparent.png" class="looma-logo" width="75%"/>
<div id="header" class="inner-div">header</div>
<div id="search-bar" class="inner-div">search-bar</div>
<div id="results-div" class="inner-div">results-div</div>
<div id="preview-panel" class="inner-div">preview-panel</div>
<div id="timeline" class="inner-div">timeline</div>
</div>
</section>
<?php
//include ('includes/toolbar.php');
?>
<?php include ('includes/js-includes.php'); ?>
<script src="js/looma-home.js"></script> <!-- Looma Javascript -->