add gitignore
This commit is contained in:
parent
9d23264fb2
commit
bd71307c1d
5 changed files with 217 additions and 156 deletions
|
|
@ -4,9 +4,9 @@
|
|||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{% block title %}Fragify{% endblock %}</title>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css" rel="stylesheet">
|
||||
<link href="https://cdn.jsdelivr.net/npm/select2-bootstrap-5-theme@1.3.0/dist/select2-bootstrap-5-theme.min.css" rel="stylesheet">
|
||||
<link href="/static/css/bootstrap.min.css" rel="stylesheet">
|
||||
<link href="/static/css/select2.min.css" rel="stylesheet">
|
||||
<link href="/static/css/select2-bootstrap-5-theme.min.css" rel="stylesheet">
|
||||
<style>
|
||||
body {
|
||||
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
||||
|
|
@ -63,6 +63,34 @@
|
|||
margin-top: 1rem;
|
||||
word-break: break-all;
|
||||
}
|
||||
/* Ensure Select2 scales properly */
|
||||
.select2-container {
|
||||
width: 100% !important;
|
||||
}
|
||||
.select2-container .select2-selection--single {
|
||||
height: auto;
|
||||
min-height: 2.75rem;
|
||||
}
|
||||
.select2-container .select2-selection__rendered {
|
||||
white-space: normal;
|
||||
line-height: 1.4 !important;
|
||||
}
|
||||
.select2-container .select2-selection__arrow {
|
||||
height: 100% !important;
|
||||
}
|
||||
/* Mobile adjustments */
|
||||
@media (max-width: 576px) {
|
||||
.main-container {
|
||||
padding: 1.25rem;
|
||||
margin: 1rem auto 4rem auto;
|
||||
}
|
||||
.title {
|
||||
font-size: 2rem;
|
||||
}
|
||||
.description {
|
||||
font-size: 1rem;
|
||||
}
|
||||
}
|
||||
.loading {
|
||||
display: none;
|
||||
}
|
||||
|
|
@ -139,9 +167,9 @@
|
|||
</footer>
|
||||
</div>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js"></script>
|
||||
<script src="/static/js/bootstrap.bundle.min.js"></script>
|
||||
<script src="/static/js/jquery.min.js"></script>
|
||||
<script src="/static/js/select2.min.js"></script>
|
||||
|
||||
{% block extra_js %}{% endblock %}
|
||||
</body>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue