This commit is contained in:
Kumi 2023-07-08 14:42:23 +02:00
parent aab343c7b5
commit 2dfe609aee
Signed by: kumi
GPG key ID: ECBCC9082395383F
2 changed files with 63 additions and 3 deletions

View file

@ -1,3 +1,5 @@
/* Navbar */
.actions a {
color: white !important;
}
@ -11,6 +13,8 @@ nav li {
display: inline;
}
/* Links */
a {
color: #58d062 !important;
}
@ -23,6 +27,8 @@ a {
color: #57d062!important;
}
/* Paragraphs */
.cust-nav {
font-family: Montserrat, sans-serif;
}
@ -175,6 +181,8 @@ a {
margin-right: 4em;
}
/* Header */
header.masthead {
text-align:center;
color:#fff;
@ -226,10 +234,61 @@ header.masthead {
text-transform:none
}
/* Main Page Boxes */
.col-md-6 {
margin-bottom: 3em;
}
/* CMS Toolbar Fix */
html.cms-toolbar-expanded .navbar {
margin-top: 35px !important;
}
}
/* Zammad Form */
.zammad-form {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.zammad-form .form-group {
margin-bottom: 1rem;
}
.zammad-form .form-control {
display: block;
width: 100%;
padding: 0.375rem 0.75rem;
font-size: 1rem;
line-height: 1.5;
color: #495057;
background-color: #fff;
background-clip: padding-box;
border: 1px solid #ced4da;
border-radius: 0.25rem;
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.zammad-form .btn {
display: inline-block;
font-weight: 400;
color: #212529;
text-align: center;
vertical-align: middle;
cursor: pointer;
background-color: rgb(88,208,98);
border: 1px solid transparent;
padding: 0.375rem 0.75rem;
font-size: 1rem;
line-height: 1.5;
border-radius: 0.25rem;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.zammad-form .btn:hover {
color: #fff;
background-color: rgb(88,208,98);
border-color: rgb(88,208,98);
}

View file

@ -15,6 +15,9 @@
<link rel="stylesheet" href="https://fa.kumi.systems/css/all.min.css">
<link rel="stylesheet" href="{% static "css/style.css" %}">
<script src="{% static "dist/js/bootstrap.bundle.min.js" %}"></script>
<script src="{% static "dist/js/jquery.min.js" %}"></script>
<title>{% page_attribute "page_title" %} {% static_placeholder "site_title" or %}Kumi Systems{% endstatic_placeholder %}</title>
{% render_block "css" %}
@ -69,8 +72,6 @@
</div>
</footer>
<script src="{% static "dist/js/bootstrap.bundle.min.js" %}"></script>
<script src="{% static "dist/js/jquery.min.js" %}"></script>
{% render_block "js" %}
<script src="{% static "js/main.js" %}"></script>