first commit

This commit is contained in:
duartegoncalvesds 2026-03-12 21:05:38 +00:00
commit 73fc2121bf
30 changed files with 13308 additions and 0 deletions

9
_static/global/Page.html Normal file
View file

@ -0,0 +1,9 @@
{{ extends "otree/Page.html" }}
{{ load otree static }}
{{ block global_styles }}
<link rel="stylesheet" href="{% static 'global/custom.css' %}">
{{ endblock }}
{{ block global_scripts }}
{{ endblock }}

25
_static/global/custom.css Normal file
View file

@ -0,0 +1,25 @@
* {
margin: 0;
padding: 0;
border: 0;
outline: 0;
}
.center {
margin-left: auto;
margin-right: auto;
}
.otree-title {
margin-top:-30px;
}
.container {
height: 50px;
position: relative;
}
.centering {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}