-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #207 from decentralized-identity/dwn-page-style-up…
…date css change
- Loading branch information
Showing
5 changed files
with
107 additions
and
4 deletions.
There are no files selected for viewing
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,60 @@ | ||
::selection { | ||
background-color:#000000; | ||
color: #fff; | ||
} | ||
::-moz-selection { | ||
background-color:#000000; | ||
color: #fff; | ||
} | ||
|
||
|
||
|
||
.m-btn-t-theme, | ||
.blog-item .blog-content h4 a:hover, | ||
.theme-color { | ||
color:#000000; | ||
} | ||
|
||
|
||
.form-group .input-focus-effect, | ||
.m-btn-t-theme:hover, | ||
.theme-after-bg:after, | ||
.btn-theme, | ||
.theme-bg { | ||
background:#000000; | ||
} | ||
|
||
.m-btn-t-theme, | ||
.border-theme, | ||
.btn-theme { | ||
border-color:#000000; | ||
} | ||
|
||
.tab-style-1 .nav .nav-item a.active, | ||
.owl-dots .owl-dot.active, | ||
.m-btn-theme, | ||
.title-section h2:after, | ||
.theme-before:before, | ||
.theme-after:after, | ||
.theme-hover:hover, | ||
.theme-g-bg{ | ||
background: #000000; | ||
background: -webkit-linear-gradient(to right, #000000, #000000); | ||
background: linear-gradient(to right, #000000, #000000); | ||
} | ||
|
||
|
||
/*Reverce*/ | ||
.about-text li:hover i, | ||
.m-btn-theme:hover{ | ||
background: #000000; | ||
background: -webkit-linear-gradient(to right, #000000, #000000); | ||
background: linear-gradient(to right, #000000, #000000); | ||
} | ||
|
||
|
||
@media (max-width: 991px){ | ||
.header { | ||
background:#000000; | ||
} | ||
} |
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
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,23 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
{% include "head-dark.html.njk" %} | ||
|
||
<body> | ||
{% include "nav.html.njk" %} | ||
<main> | ||
{% block content %}{% endblock %} | ||
</main> | ||
|
||
{% include "footer.html.njk" %} | ||
|
||
{% for file in js %} | ||
<script src="/js/{{ file }}.js"></script> | ||
{% endfor %} | ||
|
||
{% block scripts %} | ||
<script src="/js/base.js"></script> | ||
{% endblock %} | ||
</body> | ||
|
||
</html> |
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
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,18 @@ | ||
<head> | ||
<meta charset="utf-8"/> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"/> | ||
<title>DIF - {{ title if title else 'Decentralized Identity Foundation' }}</title> | ||
<meta name="google-site-verification" content="8yJCkbG9ayv7Vbjgjk525YTGbDVCvUZ_Moviopr6f1M"/> <!-- Plugin CSS --> | ||
<link href="/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet"/> | ||
<link href="/plugins/owl-carousel/css/owl.carousel.min.css" rel="stylesheet"/> | ||
{% for file in css %} | ||
<link href="/css/{{ file }}.css" rel="stylesheet"/> | ||
{% else %}<!-- no css were found to include -->{% endfor %} | ||
<!-- Theme Style --> | ||
<link href="/css/styles.css" rel="stylesheet"/> | ||
<link href="/css/candidate.css" rel="stylesheet"/> | ||
<link href="/css/color/color-13.css" rel="stylesheet" id="color_theme"/> <!-- Favicon --> | ||
<link rel="icon" href="/favicon.ico"/> | ||
<link rel="icon" type="image/png" href="/favicon.png?r1"/> | ||
</head> |