Changeset 9212
- Timestamp:
- May 23, 2011, 5:58:47 PM (13 years ago)
- Location:
- src/django_gheat/website
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/django_gheat/website/static/style.css
r9211 r9212 42 42 #menu{ 43 43 width:100%-10px; 44 height:20px; 44 45 background-color:#BA0000; 45 46 padding-left:5px; … … 61 62 padding:5px; 62 63 } 64 65 #filters_text{ 66 height:100%; 67 width:570px; 68 overflow:hidden; 69 float:left; 70 } 71 72 #filters_list{ 73 padding:5px; 74 width:200px; 75 border-left: 1px solid #BA0000; 76 float:right; 77 margin-bottom:5px; 78 } 63 79 64 80 h1{ 65 81 color:#C20000; 66 //text-align:right;67 margin-right:15px;68 border-bottom:1px solid #C20000;69 82 } 70 83 71 84 A:link{ 72 color:# 000;85 color:#FFF; 73 86 } 74 87 75 88 A:visited{ 76 color:# E3E3E3;89 color:#FFF; 77 90 } 78 91 79 92 A:active{ 80 color:# E3E3E3;93 color:#FFF; 81 94 } 82 95 83 96 A:hover{ 84 color:# B8B8B8;97 color:#DDD; 85 98 } -
src/django_gheat/website/templates/home.html
r9211 r9212 36 36 </div> 37 37 <div id="menu"> 38 < font onclick="toggleDiv('info')">Info</font>39 < font style="padding-left:15px;" onclick="toggleDiv('filters')">Filters</font>38 <a href="javascript:toggleDiv('info')">Info</a> 39 <a href="javascript:toggleDiv('filters')" style="padding-left:15px;">Filters</a> 40 40 </div> 41 41 <div id="info"> … … 43 43 </div> 44 44 <div id="filters"> 45 <div id="filters_text"> 46 <h1>Filters</h1> 47 <p>Create your custom layer by choosing the desired filter options on the right and adding it the layer to the list.</p> 48 <p>For instance, you can choose to create a layer with data measured only by yourself, or with a certain node from Wireless Leiden only.</p> 49 </div> 50 <div id="filters_list"> 45 51 <form method="get" action=""> 46 52 <table border="0"> … … 48 54 <td>User</td> 49 55 <td><input type="text" id="user" name="user" size="10"/></td> 56 </tr> 57 <tr> 58 <td>Set</td> 59 <td><input type="text" id="dataset" name="dataset" size="10"/></td> 60 </tr> 61 <tr> 62 <td>Date</td> 63 <td><input type="text" id="date" name="date" size="10"/></td> 64 </tr> 65 <tr> 50 66 <td>WL Node</td> 51 67 <td><input type="text" id="wlnode" name="wlnode" size="10"/></td> 52 <td>Date</td> 53 <td><input type="text" id="date" name="date" size="10"/></td> 68 </tr> 69 <tr> 70 <td>Encrypted</td> 71 <td><input type="checkbox" id="enc" name="enc"/></td> 72 </tr> 73 <tr> 74 <td>Layer colour</td> 75 <td><input type="text" id="colour" name="colour" size="10"/></td> 76 </tr> 77 <tr> 54 78 <td>Layer name</td> 55 79 <td><input type="text" id="lname" name="lname" size="10"/></td> 56 80 </tr> 57 81 <tr> 58 <td>Set</td>59 <td><input type="text" id="dataset" name="dataset" size="10"/></td>60 <td>Encrypted</td>61 <td><input type="checkbox" id="enc" name="enc"/></td>62 <td>Colour</td>63 <td><input type="text" id="colour" name="colour" size="10"/></td>64 82 <td></td> 65 83 <td><input type="button" value="Add filter" onClick="filters()"/></td> … … 67 85 </table> 68 86 </form> 87 </div> 69 88 </div> 70 89 </div>
Note:
See TracChangeset
for help on using the changeset viewer.