-
Notifications
You must be signed in to change notification settings - Fork 31
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
0 parents
commit bb095fa
Showing
551 changed files
with
80,128 additions
and
0 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,10 @@ | ||
docs/assets | ||
|
||
|
||
|
||
node_modules | ||
.idea | ||
**/.DS_Store | ||
|
||
.DS_Store | ||
docs/.DS_Store |
Empty file.
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,3 @@ | ||
{ | ||
"liveServer.settings.port": 5000 | ||
} |
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 @@ | ||
identity.foundation |
Validating CODEOWNERS rules …
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,8 @@ | ||
|
||
# These owners will be the default owners for everything in | ||
# the repo. Unless a later match takes precedence, | ||
# they will be requested for review when someone opens a | ||
# pull request. | ||
* @paulgrehan @CipherQueen | ||
|
||
# See CODEOWNERS syntax here: https://help.github.com/articles/about-codeowners/#codeowners-syntax |
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,19 @@ | ||
# DIF Contributor Agreement | ||
|
||
By contributing to any discussion, code, issues, pull requests, or other forms of contribution to this repository and in all other DIF mediums where discussion, development, and collaboration on its contents are taking place, your contributions are bound by DIF's standard license and attribution selections, as detailed below: | ||
|
||
## Copyright Policy | ||
|
||
The copyright mode for all materials and content associated with this repository and development initiative are licensed under Creative Commons Attribution 4.0. | ||
|
||
## Source Code | ||
|
||
Source code contributions are subject to the Developer Certificate of Origin version 1.1, available at https://developercertificate.org/, and all code is subject to the Apache 2.0 license, available at https://www.apache.org/licenses/LICENSE-2.0.html. | ||
|
||
## Patent Licensing | ||
|
||
The patent mode for all code, materials, and content in this repo, and associated with development of this initiative, are licensed under the W3C's Patent Policy, as detailed below: | ||
|
||
1. Licensing Commitment. Each contributor agrees to make available any of its Essential Claims, as defined in the W3C Patent Policy (available at https://www.w3.org/Consortium/Patent-Policy-20040205), under the W3C RF licensing requirements Section 5 (https://www.w3.org/Consortium/Patent-Policy-20040205), as if the contribution was contained in or associated with a W3C Recommendation. | ||
|
||
2. For Exclusion. Prior to committing any code, bug reports, pull requests, or other forms of contribution, a contributor may exclude Essential Claims from its licensing commitments under this agreement by providing written notice of that intent to DIF's Executive Director (and must received confirmation of receipt for the exclusion to have effect). The Exclusion Notice for issued patents and published applications must include the patent number(s) or title and application number(s), as the case may be, for each of the issued patent(s) or pending patent application(s) that the contributor wishes to exclude from the licensing commitment set forth in Section 1 of this patent policy. If an issued patent or pending patent application that may contain Essential Claims is not set forth in the Exclusion Notice, those Essential Claims shall continue to be subject to the licensing commitments under this agreement. The Exclusion Notice for unpublished patent applications must provide either: (i) the text of the filed application; or (ii) identification of the specific part(s) of the contribution whose implementation makes the excluded claim an Essential Claim. If (ii) is chosen, the effect of the exclusion will be limited to the identified part(s) of the contribution. DIF's Executive Director will publish Exclusion Notices. |
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file added
BIN
+733 KB
assets/crosscommunity-architecture-familiarity-survey-result-oct-2020.pdf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,33 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title></title> | ||
|
||
<script> | ||
var route = {}; | ||
var routes = { | ||
'schemas': function(){ | ||
return { | ||
location: '/schemas', | ||
redirect: location.pathname | ||
} | ||
} | ||
}; | ||
|
||
try { | ||
var segments = location.pathname.split('?')[0].match(/(\w+)/g); | ||
route = segments[0] ? routes[segments[0]](segments) : route; | ||
} catch (err) {} | ||
|
||
sessionStorage.redirect = route.redirect || '/'; | ||
document.title = 'DIF - ' + route.title || 'Decentralized Identity Foundation'; | ||
location.replace(route.location || '/'); | ||
</script> | ||
</head> | ||
<body> | ||
| ||
| ||
| ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
identity.foundation |
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,106 @@ | ||
* { | ||
font-family: sans-serif; | ||
padding: 0px; | ||
margin: 0px; | ||
} | ||
|
||
.candidate-container { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
transform: translate(-50%, -50%); | ||
background-color: #ECEFF1; | ||
width: 500px; | ||
height: 250px; | ||
border-radius: 10px; | ||
overflow: hidden; | ||
} | ||
|
||
.menu-icon { | ||
position: absolute; | ||
right: 0; | ||
width: 53px; | ||
height: 53px; | ||
margin-top: 190px; | ||
margin-right: 90px; | ||
} | ||
|
||
.menu-base { | ||
position: absolute; | ||
right: 0; | ||
width: 53px; | ||
height: 53px; | ||
margin-top: 190px; | ||
margin-right: 180px; | ||
} | ||
.svg-background { | ||
width: 100%; | ||
height: 100%; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
background-color: #1E88E7; | ||
-webkit-clip-path: polygon(0 0, 14% 0, 48% 100%, 0% 100%); | ||
clip-path: polygon(0 0, 14% 0, 48% 100%, 0% 100%); | ||
} | ||
|
||
.svg-background2 { | ||
width: 100%; | ||
height: 100%; | ||
position: absolute; | ||
top: 0; | ||
left: 20px; | ||
background-color: #FFFFFF; | ||
z-index: -9; | ||
-webkit-clip-path: polygon(0 0, 14% 0, 48% 100%, 0% 100%); | ||
clip-path: polygon(0 0, 14% 0, 48% 100%, 0% 100%); | ||
} | ||
|
||
.profile-img { | ||
position: absolute; | ||
width: 150px; | ||
height: 150px; | ||
margin-top: 55px; | ||
margin-left: 40px; | ||
border-radius: 50%; | ||
} | ||
|
||
.circle { | ||
position: absolute; | ||
width: 162px; | ||
height: 161px; | ||
left: 0; | ||
top: 0; | ||
background-color: #ECEFF1; | ||
border-radius: 50%; | ||
margin-top: 50.5px; | ||
margin-left: 35px; | ||
} | ||
|
||
.text-container { | ||
position: absolute; | ||
right: 0; | ||
margin-right: 40px; | ||
margin-top: 25px; | ||
max-width: 250px; | ||
text-align: center; | ||
} | ||
|
||
.title-text { | ||
color: #263238; | ||
font-size: 24px; | ||
font-weight: 600; | ||
margin-top: 1px; | ||
} | ||
|
||
.info-text { | ||
margin-top: 5px; | ||
font-size: 18px; | ||
} | ||
|
||
.desc-text { | ||
font-size: 12px; | ||
margin-top: 10px; | ||
text-align: left; | ||
} | ||
|
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:#38f9d7; | ||
color: #fff; | ||
} | ||
::-moz-selection { | ||
background-color:#38f9d7; | ||
color: #fff; | ||
} | ||
|
||
|
||
|
||
.m-btn-t-theme, | ||
.blog-item .blog-content h4 a:hover, | ||
.theme-color { | ||
color:#38f9d7; | ||
} | ||
|
||
|
||
.form-group .input-focus-effect, | ||
.m-btn-t-theme:hover, | ||
.theme-after-bg:after, | ||
.btn-theme, | ||
.theme-bg { | ||
background:#38f9d7; | ||
} | ||
|
||
.m-btn-t-theme, | ||
.border-theme, | ||
.btn-theme { | ||
border-color:#38f9d7; | ||
} | ||
|
||
.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: #43e97b; | ||
background: -webkit-linear-gradient(to right, #38f9d7, #43e97b); | ||
background: linear-gradient(to right, #38f9d7, #43e97b); | ||
} | ||
|
||
|
||
/*Reverce*/ | ||
.about-text li:hover i, | ||
.m-btn-theme:hover{ | ||
background: #38f9d7; | ||
background: -webkit-linear-gradient(to right, #43e97b, #38f9d7); | ||
background: linear-gradient(to right, #43e97b, #38f9d7); | ||
} | ||
|
||
|
||
@media (max-width: 991px){ | ||
.header { | ||
background:#38f9d7; | ||
} | ||
} |
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,56 @@ | ||
::selection { | ||
background-color:#FFB300; | ||
color: #fff; | ||
} | ||
::-moz-selection { | ||
background-color:#FFB300; | ||
color: #fff; | ||
} | ||
|
||
|
||
|
||
.m-btn-t-theme, | ||
.blog-item .blog-content h4 a:hover, | ||
.theme-color { | ||
color:#FFB300; | ||
} | ||
|
||
|
||
.form-group .input-focus-effect, | ||
.m-btn-t-theme:hover, | ||
.theme-after-bg:after, | ||
.btn-theme, | ||
.theme-bg { | ||
background:#FFB300; | ||
} | ||
|
||
.m-btn-t-theme, | ||
.border-theme, | ||
.btn-theme { | ||
border-color:#FFB300; | ||
} | ||
|
||
.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: #FFB300; | ||
} | ||
|
||
|
||
/*Reverce*/ | ||
.about-text li:hover i, | ||
.m-btn-theme:hover{ | ||
background: #FFB300; | ||
} | ||
|
||
|
||
@media (max-width: 991px){ | ||
.header { | ||
background:#FFB300; | ||
} | ||
} |
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,56 @@ | ||
::selection { | ||
background-color:#00E676; | ||
color: #fff; | ||
} | ||
::-moz-selection { | ||
background-color:#00E676; | ||
color: #fff; | ||
} | ||
|
||
|
||
|
||
.m-btn-t-theme, | ||
.blog-item .blog-content h4 a:hover, | ||
.theme-color { | ||
color:#00E676; | ||
} | ||
|
||
|
||
.form-group .input-focus-effect, | ||
.m-btn-t-theme:hover, | ||
.theme-after-bg:after, | ||
.btn-theme, | ||
.theme-bg { | ||
background:#00E676; | ||
} | ||
|
||
.m-btn-t-theme, | ||
.border-theme, | ||
.btn-theme { | ||
border-color:#00E676; | ||
} | ||
|
||
.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: #00E676; | ||
} | ||
|
||
|
||
/*Reverce*/ | ||
.about-text li:hover i, | ||
.m-btn-theme:hover{ | ||
background: #00E676; | ||
} | ||
|
||
|
||
@media (max-width: 991px){ | ||
.header { | ||
background:#00E676; | ||
} | ||
} |
Oops, something went wrong.