Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Blizzard Blast
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Martina Therese R. Reyes
Blizzard Blast
Commits
d6b61de7
Commit
d6b61de7
authored
Dec 07, 2021
by
Martina Therese R. Reyes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved styling from local static files into work space
parent
5b142cd5
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
92 additions
and
5 deletions
+92
-5
styles.css
blizzardblast/static/css/styles.css
+63
-0
inventory.html
blizzardblast/templates/inventory.html
+13
-0
order.html
blizzardblast/templates/order.html
+16
-5
No files found.
blizzardblast/static/css/styles.css
View file @
d6b61de7
...
@@ -120,3 +120,66 @@ header {
...
@@ -120,3 +120,66 @@ header {
background-color
:
#BFCDE0
;
background-color
:
#BFCDE0
;
color
:
#3B3355
;
color
:
#3B3355
;
}
}
#filter-area
{
display
:
flex
;
justify-content
:
center
;
}
#filter-area
>
button
{
padding
:
0.5rem
7rem
;
background-color
:
#BFCDE0
;
color
:
#3B3355
;
border-radius
:
2rem
;
}
.search-bar
{
border
:
none
;
padding
:
12px
;
margin
:
0
12px
;
}
#filter-area
>
.search-button
{
border
:
none
;
background-color
:
#BFCDE0
;
color
:
#3B3355
;
margin
:
0.3rem
4rem
;
padding
:
0.5rem
8rem
;
border-radius
:
2rem
;
}
#filter-area
>
.search-button
:hover
{
text-decoration
:
underline
;
cursor
:
pointer
;
background-color
:
#3B3355
;
color
:
#FEFCFD
;
}
#search-filter
{
border
:
#3B3355
1px
solid
;
;
border-radius
:
2rem
;
padding
:
0.6rem
;
}
#CRUD-features
{
display
:
flex
;
justify-content
:
center
;
margin
:
4px
auto
;
padding
:
10px
;
}
#CRUD-features
>
button
{
border
:
none
;
background-color
:
#BFCDE0
;
color
:
#3B3355
;
margin
:
0.3rem
4rem
;
padding
:
0.5rem
8rem
;
border-radius
:
2rem
;
}
#CRUD-features
>
button
:hover
{
text-decoration
:
underline
;
cursor
:
pointer
;
background-color
:
#3B3355
;
color
:
#FEFCFD
;
}
\ No newline at end of file
blizzardblast/templates/inventory.html
View file @
d6b61de7
...
@@ -8,5 +8,18 @@
...
@@ -8,5 +8,18 @@
{% block content %}
{% block content %}
<h1
class=
'view-title'
>
Inventory
</h1>
<h1
class=
'view-title'
>
Inventory
</h1>
<!-- SEARCH BOX -->
<div
id=
"filter-area"
>
<select
name=
"search-filter"
id=
"search-filter"
>
<option
selected=
"selected"
>
Filter
</option>
<option
value=
"category"
>
Category
</option>
</select>
<input
class=
"search-bar"
size=
60
type=
"text"
placeholder=
"Search.."
>
<button
class=
"search-button"
>
Search
</button>
</div>
<div
id=
"CRUD-features"
>
<button
id=
"add-to-inventory"
>
Add to Inventory
</button>
<button
id=
"update"
>
Refresh
</button>
</div>
{% endblock %}
{% endblock %}
blizzardblast/templates/order.html
View file @
d6b61de7
...
@@ -8,10 +8,21 @@
...
@@ -8,10 +8,21 @@
{% block content %}
{% block content %}
<h1
class=
'view-title'
>
Create Order
</h1>
<h1
class=
'view-title'
>
Order
</h1>
<div
class=
'button-container'
>
<!-- SEARCH BOX -->
<button
class=
'order-button'
>
Add Order
</button>
<div
id=
"filter-area"
>
<button
class=
'order-button'
>
Update Order
</button>
<select
name=
"search-filter"
id=
"search-filter"
>
<button
class=
'order-button'
>
Delete Order
</button>
<option
selected=
"selected"
>
Filter
</option>
<option
value=
"total-sales-monthly"
>
Total Monthly Sales
</option>
<option
value=
"Receipt"
>
Individual Receipt
</option>
</select>
<input
class=
"search-bar"
size=
60
type=
"text"
placeholder=
"Search.."
>
<button
class=
"search-button"
>
Search
</button>
</div>
<div
id=
"CRUD-features"
>
<button
id=
"addorder"
>
Add Order
</button>
<button
id=
"deleteorder"
>
Delete Order
</button>
<button
id=
"update"
>
Refresh
</button>
</div>
</div>
{% endblock %}
{% endblock %}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment