Added LICENSE and removed links
This commit is contained in:
parent
6f64408643
commit
aa8d5e36b1
4 changed files with 42 additions and 12 deletions
15
LICENSE
Normal file
15
LICENSE
Normal file
|
@ -0,0 +1,15 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015-2018 LBRY Inc.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the
|
||||
following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS-IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
|
||||
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE
|
||||
SOFTWARE OR THE USE OF OTHER DEALINGS IN THE SOFTWARE.
|
|
@ -47,7 +47,7 @@ Contributions to this project are welcome, encouraged, and compensated.
|
|||
For more details, see [CONTRIBUTING.md](CONTRIBUTING.md).
|
||||
|
||||
## License
|
||||
This project is MIT licensed.
|
||||
This project is MIT licensed. For the full license, see [LICENSE](LICENSE).
|
||||
|
||||
## Security
|
||||
We take security seriously. Please contact [security@lbry.io](mailto:security@lbry.io) regarding any security issues.
|
||||
|
|
|
@ -249,16 +249,31 @@ body.home { // sass-lint:disable-line no-qualifying-elements // TODO: FIX THIS
|
|||
grid-area: contribute;
|
||||
|
||||
ul {
|
||||
li {
|
||||
@media (min-width: 701px) {
|
||||
width: calc(100% / 4);
|
||||
margin-bottom: 4rem;
|
||||
}
|
||||
|
||||
@media (max-width: 700px) {
|
||||
width: 50%;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
a::before {
|
||||
li {
|
||||
@media (min-width: 701px) {
|
||||
width: calc(100% / 4); height: 6rem;
|
||||
}
|
||||
|
||||
@media (max-width: 700px) {
|
||||
width: 50%; height: 5rem;
|
||||
}
|
||||
|
||||
&::before {
|
||||
width: 100%; height: 100%;
|
||||
|
||||
background-position: center;
|
||||
background-repeat: no-repeat;
|
||||
content: "";
|
||||
display: block;
|
||||
|
||||
@media (min-width: 901px) {
|
||||
top: -1rem;
|
||||
background-size: 4rem;
|
||||
|
@ -270,19 +285,19 @@ body.home { // sass-lint:disable-line no-qualifying-elements // TODO: FIX THIS
|
|||
}
|
||||
}
|
||||
|
||||
&:nth-child(1) a::before {
|
||||
&:nth-child(1)::before {
|
||||
background-image: url("/assets/media/svg/keyboard.svg");
|
||||
}
|
||||
|
||||
&:nth-child(2) a::before {
|
||||
&:nth-child(2)::before {
|
||||
background-image: url("/assets/media/svg/anchor.svg");
|
||||
}
|
||||
|
||||
&:nth-child(3) a::before {
|
||||
&:nth-child(3)::before {
|
||||
background-image: url("/assets/media/svg/monitor.svg");
|
||||
}
|
||||
|
||||
&:nth-child(4) a::before {
|
||||
&:nth-child(4)::before {
|
||||
background-image: url("/assets/media/svg/flag.svg");
|
||||
}
|
||||
}
|
||||
|
|
|
@ -70,10 +70,10 @@ module.exports = exports = () => html`
|
|||
<p>No matter your experience or skill level, <em>you</em> can progress content freedom.</p>
|
||||
|
||||
<ul>
|
||||
<li><a href="" title="">Coding</a></li>
|
||||
<li><a href="" title="">Creative</a></li>
|
||||
<li><a href="" title="">Writing</a></li>
|
||||
<li><a href="" title="">Testing</a></li>
|
||||
<li>Coding</li>
|
||||
<li>Creative</li>
|
||||
<li>Writing</li>
|
||||
<li>Testing</li>
|
||||
</ul>
|
||||
<p>
|
||||
<a class="cta" href="/contribute">Collaborate with Contributors</a>
|
||||
|
|
Loading…
Reference in a new issue