Use Simple.css

This commit is contained in:
dece 2023-10-14 14:09:32 +02:00
parent 15847c32c2
commit 4566f8b85b
2 changed files with 14 additions and 20 deletions

1
public/simple-v1.min.css vendored Normal file

File diff suppressed because one or more lines are too long

View file

@ -1,23 +1,16 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}LSBC{% endblock %}</title> <title>{% block title %}LSBC{% endblock %}</title>
{# Run `composer require symfony/webpack-encore-bundle` to start using Symfony UX #} <style>
{% block stylesheets %} img { max-width: 100%; }
<style> .help-text { font-size: 0.8em; }
body { margin: 1em auto; max-width: 800px; width: 95%; font: 18px/1.5 sans-serif; } </style>
img { max-width: 100%; } <link rel="stylesheet" href="/simple-v1.min.css">
.help-text { font-size: 0.8em; } </head>
</style> <body>
{{ encore_entry_link_tags('app') }} {% block body %}{% endblock %}
{% endblock %} </body>
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html> </html>