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