Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update style.css #47

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
173 changes: 171 additions & 2 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@
/* import global styling */
@import url(./partials/_global.css);


/* Colors */
:root {
--color-default: #222222;
--color-primary: #0f0f0f;
--color-secondary: #f85a40;
}
/* start navigation */

.header_area .main-menu .navbar .navbar-brand{
Expand Down Expand Up @@ -345,4 +350,168 @@ footer.footer-area .social a:hover > i{
}


/* End Footer */
/* End Footer */
.contact .info-container {
background-color: var(--color-primary);
height: 100%;
padding: 20px;
border-radius: 10px 0 0 10px;
box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.contact .info-item {
width: 100%;
background-color: #000000;
margin-bottom: 20px;
padding: 20px;
border-radius: 10px;
color: #fff;
}

.contact .info-item:last-child {
margin-bottom: 0;
}

.contact .info-item i {
font-size: 20px;
color: #fff;
float: left;
width: 44px;
height: 44px;
background-color: rgba(255, 255, 255, 0.2);
display: flex;
justify-content: center;
align-items: center;
border-radius: 50px;
transition: all 0.3s ease-in-out;
margin-right: 15px;
}

.contact .info-item h4 {
padding: 0;
font-size: 20px;
font-weight: 600;
margin-bottom: 5px;
}

.contact .info-item p {
padding: 0;
margin-bottom: 0;
font-size: 14px;
}

.contact .info-item:hover i {
background: #fff;
color: var(--color-primary);
}

.contact .php-email-form {
width: 100%;
height: 100%;
background: #fff;
box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
padding: 30px;
border-radius: 0 10px 10px 0;
}

.contact .php-email-form .form-group {
padding-bottom: 8px;
}

.contact .php-email-form .error-message {
display: none;
color: #fff;
background: #df1529;
text-align: left;
padding: 15px;
font-weight: 600;
}

.contact .php-email-form .error-message br+br {
margin-top: 25px;
}

.contact .php-email-form .sent-message {
display: none;
color: #fff;
background: #059652;
text-align: center;
padding: 15px;
font-weight: 600;
}

.contact .php-email-form .loading {
display: none;
background: #fff;
text-align: center;
padding: 15px;
}

.contact .php-email-form .loading:before {
content: "";
display: inline-block;
border-radius: 50%;
width: 24px;
height: 24px;
margin: 0 10px -6px 0;
border: 3px solid #059652;
border-top-color: #fff;
-webkit-animation: animate-loading 1s linear infinite;
animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
border-radius: 0;
box-shadow: none;
font-size: 14px;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
padding: 12px 15px;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
border-color: var(--color-primary);
}

.contact .php-email-form textarea {
padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
background: var(--color-primary);
border: 0;
padding: 14px 45px;
color: #fff;
transition: 0.4s;
border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
background: rgba(0, 131, 116, 0.8);
}

@-webkit-keyframes animate-loading {
0% {
transform: rotate(0deg);
}

100% {
transform: rotate(360deg);
}
}

@keyframes animate-loading {
0% {
transform: rotate(0deg);
}

100% {
transform: rotate(360deg);
}
}