-
Notifications
You must be signed in to change notification settings - Fork 5
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 #48 from bptlab/feature/39-refactoring-static-ui
Feature/39 refactoring static UI
- Loading branch information
Showing
12 changed files
with
232 additions
and
62 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
.main_body { | ||
background-color: white; | ||
font-family: 'Gill Sans', sans-serif; | ||
width: 50%; | ||
margin-top: 5%; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
|
||
button { | ||
width: 100%; /* Full width of the container */ | ||
padding: 10px; /* Add padding for better appearance */ | ||
} | ||
|
||
.selection_body{ | ||
background-color: white; | ||
font-family: 'Gill Sans', sans-serif; | ||
text-align: center; | ||
margin: 0; | ||
padding: 0; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
} | ||
|
||
.selection_container { | ||
width: 50%; | ||
} | ||
|
||
.selection_logo { | ||
max-width: 800px; | ||
margin-bottom: 20px; | ||
margin-top: -150px; | ||
} |
File renamed without changes
File renamed without changes
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
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,36 @@ | ||
.main_body { | ||
background-color: white; | ||
font-family: 'Gill Sans', sans-serif; | ||
width: 50%; | ||
margin-top: 5%; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
|
||
button { | ||
width: 100%; /* Full width of the container */ | ||
padding: 10px; /* Add padding for better appearance */ | ||
margin: 10px 0; /* Add some margin around buttons */ | ||
} | ||
|
||
.selection_body{ | ||
background-color: white; | ||
font-family: 'Gill Sans', sans-serif; | ||
text-align: center; | ||
margin: 0; | ||
padding: 0; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
} | ||
|
||
.selection_container { | ||
width: 50%; | ||
} | ||
|
||
.selection_logo { | ||
max-width: 800px; | ||
margin-bottom: 20px; | ||
margin-top: -150px; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,8 +1,13 @@ | ||
"""tracex URL Configuration for tracex app""" | ||
from django.contrib import admin | ||
from django.urls import include, path | ||
from django.conf import settings | ||
from django.conf.urls.static import static | ||
|
||
urlpatterns = [ | ||
path("extraction/", include("extraction.urls")), | ||
path("admin/", admin.site.urls), | ||
] | ||
|
||
if settings.DEBUG: | ||
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) |