-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #587 from ufal/server_update
Server update
- Loading branch information
Showing
6 changed files
with
620 additions
and
13 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/usr/bin/env python3 | ||
|
||
from neuralmonkey.server import main | ||
from neuralmonkey.server.server import main | ||
|
||
if __name__ == "__main__": | ||
main() |
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
.label { | ||
height: 20px; | ||
margin-bottom: 15px; | ||
} | ||
|
||
.label label { | ||
font-size: 1.5em; | ||
clear: both; | ||
} | ||
|
||
.control { | ||
clear: both; | ||
} | ||
|
||
.clear { | ||
clear: both; | ||
} | ||
|
||
#submit-div { | ||
text-align: left; | ||
} | ||
|
||
#submit-div input { | ||
width: 100px; | ||
height: 40px; | ||
font-size: 1.5em; | ||
} | ||
|
||
textarea { | ||
width: 98%; | ||
height: 200px; | ||
font-size: 1.5em; | ||
font-weight: bold; | ||
} | ||
|
||
.translation { | ||
width: 98%; | ||
} | ||
|
||
.translation p { | ||
font-size: 1.5em; | ||
text-align: center; | ||
} |
Oops, something went wrong.