From b5a5f16a2dbc33eac54ecffb6b41fe2a2161869d Mon Sep 17 00:00:00 2001 From: louie Date: Sun, 17 Apr 2022 19:40:26 -0700 Subject: Moved background css to custom --- assignment_list.css | 37 --------- assignment_list.html | 86 +++++++++++++++++++++ assignment_list.php | 208 --------------------------------------------------- 3 files changed, 86 insertions(+), 245 deletions(-) create mode 100644 assignment_list.html delete mode 100644 assignment_list.php diff --git a/assignment_list.css b/assignment_list.css index d6c388d..c3e33d6 100644 --- a/assignment_list.css +++ b/assignment_list.css @@ -1,34 +1,3 @@ -/* -#add_class_dialog { - background-color: lightgray; - margin: auto; - margin-top: 10px; - width: 400px; -} - -#add_class_dialog>div { - display: flex; - justify-content: space-between; - padding: 5px; -} -*/ - -#bg { - z-index: -1; - position: fixed; - top: 0; - left: 0; - right: 0; - bottom: 0; - opacity: 1; - background-size: contain; - background-repeat: no-repeat; - background-position: 50% 0; - animation:2s hide forwards; - animation-delay: .1s; -} -@keyframes hide{ 0%{opacity:1;} 100%{opacity:.1;}} - #hw_div { margin-top: 30px; margin-bottom: 30px; @@ -113,12 +82,6 @@ button.add,button.edit,button.delete,button.mark_done { margin-right: 2px; } -/* -button.add:hover,button.edit:hover,button.delete:hover,button.mark_done:hover { - font-weight: bold; -} -*/ - button.delete { background-color: red; } diff --git a/assignment_list.html b/assignment_list.html new file mode 100644 index 0000000..47d90c9 --- /dev/null +++ b/assignment_list.html @@ -0,0 +1,86 @@ + + + Assignment List + + + + + + + +
+ +
+
+
+
+
+ +
+ + + + + + + diff --git a/assignment_list.php b/assignment_list.php deleted file mode 100644 index c0da6ec..0000000 --- a/assignment_list.php +++ /dev/null @@ -1,208 +0,0 @@ -"; - - $name = empty($_REQUEST['add_class_desc']) ? "" : $_REQUEST['add_class_desc']; - $code = empty($_REQUEST['add_class_id']) ? "" : $_REQUEST['add_class_id']; - $location = empty($_REQUEST['add_class_location']) ? "left" : $_REQUEST['add_class_location']; - $link = empty($_REQUEST['add_class_link']) ? "" : $_REQUEST['add_class_link']; - - if(!$code) print "Missing inputs
"; - else{ - $location = $location == "left" ? 0 : 1; - - $name = mysqli_real_escape_string($db, $name); - $code = mysqli_real_escape_string($db, $code); - //$location = mysqli_real_escape_string($db, $location); - $link = mysqli_real_escape_string($db, $link); - $q = "INSERT INTO Classes (Name, Code, Location, Link) VALUES ('$name', '$code', '$location', '$link')"; - if(!mysqli_query($db, $q)) print "$q
Insertion Failed: " . mysqli_error($db) . "
"; - } - -} - */ - -$day = date("l, F jS"); -$bg_image_arr = array("rubber_duck_PNG33.png", -"dice.png"); - -function entry($due_date, $desc, $color, $highlight, $done){ - if($due_date != "ASAP" && $due_date != ""){ - $due_date_pieces = explode(" ", $due_date); - $due_date_num = date('z', mktime(0, 0, 0, substr($due_date_pieces[1], 0, 2), substr($due_date_pieces[1], 3, 2), date('Y'))); - - if($due_date_num - date('z') <= 1 && $color != "black" && $color != "brown") $color = "red"; - if((!$done && ($due_date_num - date('z') <= 0)) || ($highlight == "orange" && ($due_date_num - date('z') <= 7))) $highlight = "yellow"; - } - if($highlight != "none" && $color == "gray") $color = "black"; - if($done){ - $color = "green"; - $highlight = "none"; - } - - print "
  • "; - if($done) print ""; // "✅"; - print ""; - print ($due_date != "" ? "$due_date: " : "") . "$desc"; - print ""; - print "
  • "; -} - -/* Conceptual ** - -class Entry{ - public static $num_hw = 0; - public static $hw_strings = []; - //$hw_string[0] = HW description - //$hw_string[1] = HW due Date (0 to 365) - - function add_hw(){ - $hw_string[] = readline("What is the HW?\n"); - $days_til_due = readline("In how many days is the HW due?\n"); - $hw_strings[] = $days_til_due + date('z'); - $num_hw++; - } -} - -function list_hw($entry){ - if(!$entry->num_hw){ - print "The test is have work"; - return; - } - else{ - print ""; - } - - return; -} - -$ENGL2A = new Entry(); -$MATH13 = new Entry(); -$COEN11 = new Entry(); -$PHYS31 = new Entry(); -$COEN11L = new Entry(); -$ENGR1 = new Entry(); -$PHYS31L = new Entry(); - -$ENGL2A->add_hw(); -print "TEST: num_hw = $ENGL2A->num_hw"; - - */ - -?> - - - - Assignment List - - - - - - -
    - -
    -
    -
    -
    -
    - -
    - - - - - - - -- cgit