diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..b912c98 --- /dev/null +++ b/static/style.css @@ -0,0 +1,22 @@ +body { + background-color: lightslategray; +} + +.grid-container { + display: grid; + grid-template-columns: auto auto auto; + gap: 20px; + background-color: lightslategray; + padding-top: 20px; + margin-left: 10%; + margin-right: 10%; +} + +.grid-container > div { + text-align: center; + height: 100px; + padding-top: 5px; + border: 2px solid black; + border-radius: 10px; + background-color: whitesmoke; +} \ No newline at end of file diff --git a/templates/base_template.html b/templates/base_template.html index ae92dc5..ba26656 100644 --- a/templates/base_template.html +++ b/templates/base_template.html @@ -4,24 +4,24 @@ - + {% block title %}{% endblock %} -