- Timestamp:
- 09/05/11 10:29:01 (14 years ago)
- Location:
- Dev/trunk
- Files:
-
- 1 added
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/classes/QuestionMenu.php
r101 r102 21 21 public static function accessDatabaseButton() { 22 22 ?> 23 <form id="accessDatabase" action="question s.php" method="post">23 <form id="accessDatabase" action="questioncreation.php" method="post"> 24 24 <input type="submit" value="Access Database" class="surveyButton bigSurveyButton" /> 25 25 </form> -
Dev/trunk/css/awesome.css
r97 r102 327 327 328 328 .padding1em { 329 329 padding: 1em; 330 330 } 331 331 … … 407 407 408 408 .borderRadius { 409 409 -moz-border-radius: 15px; 410 410 border-radius: 15px; 411 411 } 412 412 413 413 .boxShadow { 414 414 -moz-box-shadow: 2px 2px 2px #888; 415 415 -webkit-box-shadow: 2px 2px 2px #888; 416 416 box-shadow: 2px 2px 2px #888; … … 470 470 ===================== STYLESHEET OF GLORY ======================== */ 471 471 .resultsDiv { 472 473 472 height: 10em; 473 border: 1px solid white; 474 474 } 475 475 476 476 .resultDiv { 477 width: 10em; 478 height: 10em; 479 border: 1px solid white; 480 background-color: #c6c6c6; 481 float: left; 482 margin-left: 2em; 477 width: 10em; 478 height: 10em; 479 border: 1px solid white; 480 background-color: #c6c6c6; 481 float: left; 482 margin-left: 2em; 483 } 484 485 /* ################################################################## 486 ===================== STYLESHEET OF GLORY ======================== */ 487 #questionListWrapper { 488 text-align: center; 489 margin-bottom: 2em; 490 } 491 492 #questionListWrapper #questionsList { 493 width: 80%; 494 min-width: 800px; 495 height: 30em; 496 } 497 498 #questionEditForm { 499 483 500 } 484 501 -
Dev/trunk/mainmenu.php
r99 r102 1 1 <?php 2 2 require 'classes/master.php'; //should be at top of every page 3 4 //$_SESSION['username'] = 'hai'; //temp, until bug is fixed 3 5 4 6 if (isset($_POST['login'])) { -
Dev/trunk/questioncreation.php
r101 r102 20 20 <div id="content"> 21 21 <?php 22 22 new QuestionCreationTool(); 23 23 ?> 24 24 </div>
Note: See TracChangeset
for help on using the changeset viewer.