This commit is contained in:
Mateusz779 2023-04-19 13:04:27 +02:00
parent 331abe518c
commit 92d7143ac0

View File

@ -44,25 +44,26 @@ form textarea {
font-size: 16px;
}
form textarea {
resize: none;
}
/* styl dla przycisku formularza */
form button[type="submit"] {
form input[type="submit"] {
background-color: #4CAF50;
color: #fff;
border: none;
color: white;
padding: 10px 20px;
border-radius: 5px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 10px 0;
cursor: pointer;
}
/* styl dla przycisku formularza po najechaniu myszką */
form button[type="submit"]:hover {
form input[type="submit"] {
background-color: #3e8e41;
}
form textarea {
resize: none;
}
{% endblock %}
{% block content %}