Force light theme + CSS fix
This commit is contained in:
parent
63a1d3d412
commit
008cc7218d
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,6 +1,9 @@
|
|||||||
.ddev
|
.ddev
|
||||||
.vscode
|
.vscode
|
||||||
|
|
||||||
|
# DB dumps
|
||||||
|
*sql*
|
||||||
|
|
||||||
###> symfony/framework-bundle ###
|
###> symfony/framework-bundle ###
|
||||||
/.env.local
|
/.env.local
|
||||||
/.env.local.php
|
/.env.local.php
|
||||||
|
8
assets/styles/app.css
Normal file → Executable file
8
assets/styles/app.css
Normal file → Executable file
@ -2,13 +2,17 @@
|
|||||||
@import url('../fonts/stylesheet.css');
|
@import url('../fonts/stylesheet.css');
|
||||||
@import url('../fontawesome-free-6.6.0-web/css/all.min.css');
|
@import url('../fontawesome-free-6.6.0-web/css/all.min.css');
|
||||||
|
|
||||||
|
:root {
|
||||||
|
--arcoa-blue: rgba(66,135,199,0.98);
|
||||||
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: 'nunitolight';
|
font-family: 'nunitolight';
|
||||||
}
|
}
|
||||||
|
|
||||||
.arcoa-menu {
|
.arcoa-menu {
|
||||||
background-color: rgba(66,135,199,0.98);
|
background-color: var(--arcoa-blue);
|
||||||
max-height: 100vh;
|
min-height: 100vh;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
#vocabs a {
|
#vocabs a {
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html data-theme="light">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>{% block title %}Welcome!{% endblock %}</title>
|
<title>{% block title %}Welcome!{% endblock %}</title>
|
||||||
|
@ -213,4 +213,4 @@
|
|||||||
{% block rightpanel %}{% endblock %}
|
{% block rightpanel %}{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
Loading…
Reference in New Issue
Block a user