-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Updated .gitignore w/notes file * Issue #5: code-cleanup Cleaned up the code to conform with PEP8 standard, added docstrings to functions and modules, added comments, removed unused functions, modified names to more meaningful names, modified some html.ids. * Added CSS Added CSS styling elements, made the text respond to viewscreen size, added scroll bar to rubric dataframe * Rubric only filter Added filter so that only assignments with an attached rubric show up in dropdown menu. * Issue #7: additional data in table Added course id, course name, and assignment name to the csv output. Elected to keep it in the dataframe shown to the user. * Issue #6: add better csv title Added course name, assignment name, and current date to csv title. * Got rid of unused import Got rid of get_course_assignment_info, an import from helpers which is not used and not defined in helpers.
- Loading branch information
1 parent
4c67ed0
commit c06b480
Showing
7 changed files
with
408 additions
and
288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ __pycache__ | |
.env | ||
.DS_Store | ||
test.ipynb | ||
requirements.md | ||
requirements.md | ||
Notes.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
h1, h2, h3, p, div, input { | ||
margin:0vw; /* This limits the amount of whitespace between text to the minimum*/ | ||
} | ||
h1 { | ||
font-size:8vw; | ||
} | ||
h2 { | ||
font-size:4vw; | ||
margin-top:1vw; | ||
} | ||
h3 { | ||
font-size:3vw; | ||
font-weight:normal; | ||
margin-bottom:1vw; | ||
} | ||
|
||
p { | ||
font-size:2vw; /* Individual <p> elements have font colours in the main file. */ | ||
} | ||
#rubric-only-filter { | ||
margin-bottom:1vw; /* Adds extra space around "This menu..." message. */ | ||
} | ||
button { | ||
font-size:2vw; | ||
display: inline-block; | ||
margin-top:1vw; | ||
margin-bottom:1vw; | ||
} | ||
#submit-course-id { | ||
margin-left:1vw; /* Adds extra space between the button and course ID input box. */ | ||
} | ||
div { | ||
font-size:2vw; | ||
border:1vw; | ||
} | ||
#rubric-datatable { | ||
overflow-x:auto; | ||
} | ||
input { | ||
font-size:2vw; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.