This repository has been archived by the owner on Apr 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
3,095 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
.footer-basic { | ||
background-color: #141a23; | ||
color: #4b4c4d; | ||
position: absolute; | ||
bottom: 0; | ||
width: 100%; | ||
} | ||
|
||
.footer-basic ul { | ||
padding: 0; | ||
list-style: none; | ||
text-align: center; | ||
font-size: 18px; | ||
line-height: 1.6; | ||
margin-bottom: 0; | ||
} | ||
|
||
.footer-basic li { | ||
padding: 0 10px; | ||
} | ||
|
||
.footer-basic ul a { | ||
color: inherit; | ||
text-decoration: none; | ||
opacity: 0.8; | ||
} | ||
|
||
.footer-basic ul a:hover { | ||
opacity: 1; | ||
} | ||
|
||
.footer-basic .social { | ||
text-align: center; | ||
padding-bottom: 25px; | ||
} | ||
|
||
.footer-basic .social > a { | ||
font-size: 24px; | ||
width: 40px; | ||
height: 40px; | ||
line-height: 40px; | ||
display: inline-block; | ||
text-align: center; | ||
border-radius: 50%; | ||
border: 1px solid #ccc; | ||
margin: 0 8px; | ||
color: inherit; | ||
opacity: 0.75; | ||
} | ||
|
||
.footer-basic .social > a:hover { | ||
opacity: 0.9; | ||
} | ||
|
||
.footer-basic .copyright { | ||
margin-top: 15px; | ||
text-align: center; | ||
font-size: 13px; | ||
color: #aaa; | ||
margin-bottom: 0; | ||
} | ||
|
||
.button-menu { | ||
display: inline-block; | ||
float: right; | ||
-webkit-app-region: no-drag; | ||
} | ||
|
||
.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover { | ||
color: rgba(255,255,255,0.9); | ||
} | ||
|
||
.navigation-clean { | ||
color: white; | ||
} | ||
|
||
.nav-item.active { | ||
background-color: #1f1f1f; | ||
border: 2px solid #2b2b2b; | ||
} | ||
|
||
.nav-item:hover { | ||
background-color: #2b2b2b; | ||
} | ||
|
||
.nav-item { | ||
margin-right: 1rem; | ||
} | ||
|
||
.btn:not(:disabled):not(.disabled) { | ||
background-color: lime; | ||
} | ||
|
||
#cape-load { | ||
box-shadow: 0 0 25px -5px #179d44; | ||
background-color: rgba(40, 175, 85, 0.85); | ||
border: 0; | ||
padding: 1rem; | ||
color: #F7F7F7; | ||
margin-bottom: 1rem; | ||
} | ||
|
||
#cape-load:hover { | ||
background-color: #28af55; | ||
box-shadow: 0 0 40px -5px #179d44; | ||
} | ||
|
||
#cape-unload { | ||
box-shadow: 0 0 25px -5px #9d1f17; | ||
background-color: rgba(175,40,40,0.85); | ||
border: 0; | ||
padding: .75rem; | ||
color: #F7F7F7; | ||
} | ||
|
||
#cape-unload:hover { | ||
background-color: #af3028; | ||
box-shadow: 0 0 40px -5px #9d1f17; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
.footer-clean { | ||
padding: 50px 0; | ||
background-color: #141414; | ||
color: #4b4c4d; | ||
} | ||
|
||
.footer-clean h3 { | ||
margin-top: 0; | ||
margin-bottom: 12px; | ||
font-weight: bold; | ||
font-size: 16px; | ||
} | ||
|
||
.footer-clean ul { | ||
padding: 0; | ||
list-style: none; | ||
line-height: 1.6; | ||
font-size: 14px; | ||
margin-bottom: 0; | ||
} | ||
|
||
.footer-clean ul a { | ||
color: inherit; | ||
text-decoration: none; | ||
opacity: 0.8; | ||
} | ||
|
||
.footer-clean ul a:hover { | ||
opacity: 1; | ||
} | ||
|
||
.footer-clean .item.social { | ||
text-align: right; | ||
} | ||
|
||
@media (max-width:767px) { | ||
.footer-clean .item { | ||
text-align: center; | ||
padding-bottom: 20px; | ||
} | ||
} | ||
|
||
@media (max-width: 768px) { | ||
.footer-clean .item.social { | ||
text-align: center; | ||
} | ||
} | ||
|
||
.footer-clean .item.social > a { | ||
font-size: 24px; | ||
width: 40px; | ||
height: 40px; | ||
line-height: 40px; | ||
display: inline-block; | ||
text-align: center; | ||
border-radius: 50%; | ||
border: 1px solid #ccc; | ||
margin-left: 10px; | ||
margin-top: 22px; | ||
color: inherit; | ||
opacity: 0.75; | ||
} | ||
|
||
.footer-clean .item.social > a:hover { | ||
opacity: 0.9; | ||
} | ||
|
||
@media (max-width:991px) { | ||
.footer-clean .item.social > a { | ||
margin-top: 40px; | ||
} | ||
} | ||
|
||
@media (max-width:767px) { | ||
.footer-clean .item.social > a { | ||
margin-top: 10px; | ||
} | ||
} | ||
|
||
.footer-clean .copyright { | ||
margin-top: 14px; | ||
margin-bottom: 0; | ||
font-size: 13px; | ||
opacity: 0.6; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
.highlight-clean { | ||
background-image: url('../../assets/img/bg.png?h=3f47ae2aecbe9dfe20774bdff015f2f6'); | ||
background-repeat: no-repeat; | ||
background-attachment: fixed; | ||
background-size: cover; | ||
padding: 50px 0; | ||
-webkit-box-shadow: 0px 2px 23px 0px rgba(0,0,0,0.7); | ||
-moz-box-shadow: 0px 2px 23px 0px rgba(0,0,0,0.7); | ||
box-shadow: 0px 2px 23px 0px rgba(0,0,0,0.7); | ||
} | ||
|
||
.highlight-clean p { | ||
color: #cccccc; | ||
} | ||
|
||
.highlight-clean h2 { | ||
font-weight: bold; | ||
margin-bottom: 25px; | ||
line-height: 1.5; | ||
padding-top: 0; | ||
margin-top: 0; | ||
color: inherit; | ||
} | ||
|
||
.highlight-clean .intro { | ||
font-size: 16px; | ||
max-width: 500px; | ||
margin: 0 auto 25px; | ||
} | ||
|
||
.highlight-clean .buttons { | ||
text-align: center; | ||
} | ||
|
||
.highlight-clean .buttons .btn { | ||
padding: 16px 32px; | ||
margin: 6px; | ||
border: none; | ||
background: none; | ||
box-shadow: none; | ||
text-shadow: none; | ||
opacity: 0.9; | ||
text-transform: uppercase; | ||
font-weight: bold; | ||
font-size: 13px; | ||
letter-spacing: 0.4px; | ||
line-height: 1; | ||
outline: none; | ||
background-color: #ddd; | ||
} | ||
|
||
.highlight-clean .buttons .btn:hover { | ||
opacity: 1; | ||
} | ||
|
||
.highlight-clean .buttons .btn:active { | ||
transform: translateY(1px); | ||
} | ||
|
||
.highlight-clean .buttons .btn-primary { | ||
background-color: #055ada; | ||
color: #fff; | ||
} | ||
|
Oops, something went wrong.