-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add CSS to HTML template (#12)
- Loading branch information
Showing
8 changed files
with
70 additions
and
27 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 |
---|---|---|
|
@@ -8,6 +8,8 @@ __pycache__/ | |
|
||
.idea/ | ||
|
||
src/slate3k/ | ||
|
||
# Distribution / packaging | ||
.Python | ||
build/ | ||
|
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
Empty file.
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
-e git+https://github.com/Wazzabeee/slate3k#egg=slate3k | ||
beautifulsoup4==4.10.0 | ||
nltk==3.6.6 | ||
odfpy==1.4.1 | ||
pdfplumber==0.5.28 | ||
slate3k==0.5.3 | ||
tabulate==0.8.9 |
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
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
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
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 |
---|---|---|
@@ -1,15 +1,54 @@ | ||
<html> | ||
<head> | ||
<title> | ||
</title> | ||
</head> | ||
<body> | ||
<div style="width: 100%; overflow: hidden;"> | ||
|
||
<div style="width: 46%; float: left;" class="block"> </div> | ||
|
||
<div style="margin-left: 50%;" class="block"> </div> | ||
|
||
</div> | ||
</body> | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Plagiarism Detection Results</title> | ||
<style> | ||
body, html { | ||
margin: 0; | ||
padding: 0; | ||
font-family: Arial, sans-serif; | ||
} | ||
|
||
.container { | ||
display: flex; | ||
justify-content: space-between; | ||
padding: 20px; | ||
} | ||
|
||
.content { | ||
width: 48%; | ||
border: 1px solid #ddd; | ||
padding: 10px; | ||
overflow: auto; | ||
height: 90vh; | ||
} | ||
|
||
h3 { | ||
color: #333; | ||
border-bottom: 1px solid #ddd; | ||
padding-bottom: 5px; | ||
} | ||
|
||
span { | ||
display: block; | ||
} | ||
|
||
a { | ||
color: #06c; | ||
text-decoration: none; | ||
} | ||
|
||
a:hover { | ||
text-decoration: underline; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div class="content" id="leftContent"></div> | ||
<div class="content" id="rightContent"></div> | ||
</div> | ||
</body> | ||
</html> |