first commit

This commit is contained in:
2026-05-04 17:16:03 +01:00
commit 2de4723bb7
181 changed files with 317767 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
/*---------------------------------------
16. Comment CSS
-----------------------------------------*/
/*-- Comment Wrap --*/
.comment-wrapper {
& h3 {
margin-bottom: 30px;
font-weight: 600;
}
}
/*-- Comment Form --*/
.comment-form {
& input {
width: 100%;
height: 50px;
border: 1px solid #eeeeee;
padding: 5px 20px;
color: $body-color;
}
& textarea {
width: 100%;
height: 120px;
border: 1px solid #eeeeee;
padding: 10px 20px;
color: $body-color;
resize: none;
}
& input[type="submit"], & button, & .submit {
width: auto;
height: 50px;
border: none;
padding: 5px 30px;
background-color: $theme-color;
color: $white;
text-transform: uppercase;
font-weight: 700;
&:hover {
background-color: $heading-color;
}
}
}