Skip to content

Commit

Permalink
migrate to web app
Browse files Browse the repository at this point in the history
  • Loading branch information
aljubaer committed Oct 26, 2020
1 parent 5220071 commit f3cc14d
Show file tree
Hide file tree
Showing 11 changed files with 457 additions and 230 deletions.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"python.pythonPath": "C:\\Program Files\\Python36\\python.exe"
"python.pythonPath": "C:\\Users\\bsse0\\AppData\\Local\\Programs\\Python\\Python37\\python.exe"
}
18 changes: 18 additions & 0 deletions colored-text.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 40 additions & 0 deletions css/nav-style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
.project-tab {
padding: 10%;
margin-top: -8%;
}
.project-tab #tabs {
background: #007b5e;
color: #eee;
}
.project-tab #tabs h6.section-title {
color: #eee;
}
.project-tab #tabs .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
color: #0062cc;
background-color: transparent;
border-color: transparent transparent #f3f3f3;
border-bottom: 3px solid !important;
font-size: 16px;
font-weight: bold;
}
.project-tab .nav-link {
border: 1px solid transparent;
border-top-left-radius: 0.25rem;
border-top-right-radius: 0.25rem;
color: #0062cc;
font-size: 16px;
font-weight: 600;
}
.project-tab .nav-link:hover {
border: none;
}
.project-tab thead {
background: #f3f3f3;
color: #333;
}
.project-tab a {
text-decoration: none;
color: #333;
font-weight: 600;
}
87 changes: 87 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
body {
font-family: 'Roboto Condensed', sans-serif;
}

hr {
margin-top: 1rem;
margin-bottom: 1rem;
border: 0;
border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.output-section {
border-style: solid;
border-width: 2px;
border-color: blue;
}

#word-cloud {
height: 40vh;
width: 40vw;
margin: 0 auto;
}

.topic-box {
width: 100%;
border-width: 2px;
border-color: black;
border-radius: 0;
margin: 2px;
padding: 2px;
font-size: 16px;
font-weight: 400;
}

.input-general {
width: 100%;
border-width: 2px;
border-color: black;
border-radius: 0;
padding: 6px 6px;
font-size: 16px;
font-weight: 400;
}

.input-general:active {
border-style: outset;
}

.input-general.active.focus, .input-general.active:focus,
.input-general.focus, .input-general:active.focus,
.input-general:active:focus, .input-general:focus {
outline: none;
box-shadow: none;
background-color: white;
border-color: red;
}

.btn-general {
width: 100%;
border-width: 2px;
border-radius: 0;
margin-top: 2px;
padding: 6px 2px;
font-size: 12px;
font-weight: 200;
text-transform: uppercase;
}

.btn-white {
border-color: black;
color: white;
}

.btn-white:hover,
.btn-white:focus{
background-color: rgb(114, 114, 114);
color: #41464b;
}

.top-section{
margin: 20px 0;
}

.mlabel {
font-size: 20px;
font-weight: 400;
}
Binary file modified gui/__pycache__/b_parser.cpython-37.pyc
Binary file not shown.
Binary file modified gui/__pycache__/data_processor.cpython-37.pyc
Binary file not shown.
Binary file modified gui/__pycache__/news_classifier.cpython-37.pyc
Binary file not shown.
Loading

0 comments on commit f3cc14d

Please sign in to comment.