diff --git a/instance/database.db b/instance/database.db index 9b8753b..f1e572d 100644 Binary files a/instance/database.db and b/instance/database.db differ diff --git a/static/SVG/afghanistan.png b/static/SVG/afghanistan.png new file mode 100644 index 0000000..7d5d157 Binary files /dev/null and b/static/SVG/afghanistan.png differ diff --git a/static/SVG/australia.png b/static/SVG/australia.png new file mode 100644 index 0000000..4927b6f Binary files /dev/null and b/static/SVG/australia.png differ diff --git a/static/SVG/bangladesh.png b/static/SVG/bangladesh.png new file mode 100644 index 0000000..2cc6be5 Binary files /dev/null and b/static/SVG/bangladesh.png differ diff --git a/static/SVG/england.png b/static/SVG/england.png new file mode 100644 index 0000000..2c2b802 Binary files /dev/null and b/static/SVG/england.png differ diff --git a/static/SVG/india.png b/static/SVG/india.png new file mode 100644 index 0000000..35fdad0 Binary files /dev/null and b/static/SVG/india.png differ diff --git a/static/SVG/netherlands.png b/static/SVG/netherlands.png new file mode 100644 index 0000000..fce156c Binary files /dev/null and b/static/SVG/netherlands.png differ diff --git a/static/SVG/new-zealand.png b/static/SVG/new-zealand.png new file mode 100644 index 0000000..c9018a0 Binary files /dev/null and b/static/SVG/new-zealand.png differ diff --git a/static/SVG/pakistan.png b/static/SVG/pakistan.png new file mode 100644 index 0000000..77107eb Binary files /dev/null and b/static/SVG/pakistan.png differ diff --git a/static/SVG/south-africa.png b/static/SVG/south-africa.png new file mode 100644 index 0000000..9bbb35e Binary files /dev/null and b/static/SVG/south-africa.png differ diff --git a/static/SVG/sri-lanka.png b/static/SVG/sri-lanka.png new file mode 100644 index 0000000..6c52d94 Binary files /dev/null and b/static/SVG/sri-lanka.png differ diff --git a/static/css/fixtures.css b/static/css/fixtures.css index 394b644..61fbde9 100644 --- a/static/css/fixtures.css +++ b/static/css/fixtures.css @@ -91,13 +91,19 @@ body { display: inline-flex; width: 3rem; height: 3rem; - background: var(--card-bg); - color: var(--badge-text); + background: white; box-shadow: 0 0 0.2rem 0.1rem var(--card-bg); justify-content: center; align-items: center; border-radius: 50%; margin-left: 1rem; + font-size: 1.2rem; + font-weight: bold; + text-align: center; + line-height: 1.5rem; + z-index: 1; + box-shadow: 0 0 0.2rem 0.1rem var(--shadow); + color: rgb(50, 0, 115); } .teams { @@ -131,14 +137,14 @@ body { position: fixed; right: 0.5rem; bottom: 2rem; - background: var(--bg); + background: white; width: 4rem; height: 4rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; - box-shadow: 0 0 0.1rem var(--badge-text); + box-shadow: black 0 0 0.2rem 0.1rem; transition: all 0.5s ease-in-out; cursor: pointer; z-index: 100; diff --git a/static/css/standings.css b/static/css/standings.css index fc61cf6..ae18ec4 100644 --- a/static/css/standings.css +++ b/static/css/standings.css @@ -60,7 +60,7 @@ table { color: -internal-quirk-inherit; text-align: start; border-spacing: 2px; - border-color: gray; + /* border-color: gray; */ font-variant: normal; } diff --git a/static/css/style.css b/static/css/style.css index 2766a86..faf8896 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -1,3 +1,6 @@ +*{ + font-family: sans-serif; +} body{ background-color: #320073; } @@ -10,11 +13,16 @@ body{ .table{ display: flex; + flex-direction: row; + justify-content: center; } +.group{ + margin: 0 20px 0 20px; + border-radius: 50px; + box-shadow: 3px 4px 2px rgba(0,0,0,0.25) -.teamlogo{ - height: 10px; } + .group{ display: flex; flex-direction: column; @@ -26,6 +34,7 @@ body{ margin:0 20px 0 20px; border-radius: 50px; box-shadow: 3px 4px 2px rgba(0,0,0,0.25) + } .team{ @@ -34,14 +43,21 @@ body{ color: white; font-size: x-large; padding: 3%; + border-radius: 50px; + } .icclogo{ - opacity: 0.8; + opacity: 1; + + cursor: default; + transition: 0.3s; } .logo{ - height:20px; - width:40px; + height: auto; + width: 40px; + margin-right: 10px; + } header { @@ -53,17 +69,27 @@ header { background-color: #FF00A5; padding: 1%; border-radius:25px; - box-shadow: 3px 4px 2px rgba(0,0,0,0.25) + box-shadow: 3px 4px 2px rgba(0,0,0,0.25); + justify-content: flex-end; + font-style: sans-serif; } #title { text-align: center; color: white; + font-family: sans-serif; + /* font-size: 1000px; + /* margin: 0; + padding: 0; */ + /* margin-left: 10%; + margin-right: 10%; */ + + } .nav { - color: white; + color: white; } #standings, #fixtures, #fantasy { @@ -72,6 +98,14 @@ header { font-size: large; } +.global-footer__social-container{ + display: flex; + justify-content: center; + flex-wrap: wrap; + position: relative; + z-index: 10; +} + .footer-social { display: flex; justify-content: center; @@ -106,3 +140,24 @@ svg.icon { height: 1.8rem; fill: currentColor; } +.footer { + margin-top: 2rem; + padding: 2rem 0; + margin-bottom: auto; + background-color: #320073; + color: white; + text-align: center; + +} +table { + width: 100%; + border-collapse: collapse; +} +th, td { + border: 1px solid black; + padding: 5px; + text-align: center; +} +th { + font-weight: bold; +} \ No newline at end of file diff --git a/templates/Fan_Poll.html b/templates/Fan_Poll.html index bfd1c9f..3342215 100644 --- a/templates/Fan_Poll.html +++ b/templates/Fan_Poll.html @@ -10,7 +10,7 @@ {% endblock %} {% block body %}
-

Fan Poll

+

Fan Poll

diff --git a/templates/base.html b/templates/base.html index 2def29a..2c0117a 100644 --- a/templates/base.html +++ b/templates/base.html @@ -4,8 +4,13 @@ {% block head %}{% endblock %} + - + {% block body %}{% endblock %} \ No newline at end of file diff --git a/templates/fixtures.html b/templates/fixtures.html index e91b91b..8f1e4b3 100644 --- a/templates/fixtures.html +++ b/templates/fixtures.html @@ -10,7 +10,9 @@ {% endblock %} {% block body %}
+

Fixtures

+
{% for fixture in fixtures %}
@@ -36,7 +38,8 @@

{{ fixture.date }}

{{ fixture.time }}

-
+
{% endfor %}
+
{% endblock %} \ No newline at end of file diff --git a/templates/index.html b/templates/index.html index 7cabd03..5c05e12 100644 --- a/templates/index.html +++ b/templates/index.html @@ -3,6 +3,7 @@ {% block head %} ICC WorldCup'23 + {% endblock %} {% block body %} @@ -22,89 +23,92 @@

Welcome to ICC World Cup 2023

1
- +
AFG
2
- +
AUS
3
- +
BAN
4
- +
ENG
5
- +
IND
6
- +
ND
7
- +
NZ
8
- +
PAK
9
- +
SA
10
- +
SL
+
-