Changeset 102 for Dev


Ignore:
Timestamp:
09/05/11 10:29:01 (14 years ago)
Author:
fpvanagthoven
Message:

Begin on questioncreation.php

Location:
Dev/trunk
Files:
1 added
3 edited
1 moved

Legend:

Unmodified
Added
Removed
  • Dev/trunk/classes/QuestionMenu.php

    r101 r102  
    2121    public static function accessDatabaseButton() {
    2222        ?>
    23         <form id="accessDatabase" action="questions.php" method="post">
     23        <form id="accessDatabase" action="questioncreation.php" method="post">
    2424            <input type="submit" value="Access Database" class="surveyButton bigSurveyButton" />
    2525        </form>
  • Dev/trunk/css/awesome.css

    r97 r102  
    327327
    328328.padding1em {
    329         padding: 1em;
     329    padding: 1em;
    330330}
    331331
     
    407407
    408408.borderRadius {
    409         -moz-border-radius: 15px;
     409    -moz-border-radius: 15px;
    410410    border-radius: 15px;
    411411}
    412412
    413413.boxShadow {
    414         -moz-box-shadow: 2px 2px 2px #888;
     414    -moz-box-shadow: 2px 2px 2px #888;
    415415    -webkit-box-shadow: 2px 2px 2px #888;
    416416    box-shadow: 2px 2px 2px #888;
     
    470470   ===================== STYLESHEET OF GLORY ======================== */
    471471.resultsDiv {
    472         height: 10em;
    473         border: 1px solid white;
     472    height: 10em;
     473    border: 1px solid white;
    474474}
    475475
    476476.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   
    483500}
    484501
  • Dev/trunk/mainmenu.php

    r99 r102  
    11<?php
    22require 'classes/master.php'; //should be at top of every page   
     3     
     4//$_SESSION['username'] = 'hai'; //temp, until bug is fixed
    35
    46if (isset($_POST['login'])) {
  • Dev/trunk/questioncreation.php

    r101 r102  
    2020            <div id="content">
    2121                <?php
    22                    
     22                    new QuestionCreationTool();
    2323                ?>
    2424            </div>
Note: See TracChangeset for help on using the changeset viewer.