Add html5 validator action (#13)
* Add html5 validator action
* 💩 Fix invalid html5
This commit is contained in:
parent
ceef0b1357
commit
9462d8940f
|
@ -15,3 +15,7 @@ jobs:
|
|||
- uses: actions/checkout@v2
|
||||
- name: Link Checker
|
||||
uses: peter-evans/link-checker@v1.2.2
|
||||
- name: HTML5 Validator
|
||||
uses: Cyb3r-Jak3/html5validator-action@v0.4.3
|
||||
with:
|
||||
root: /
|
||||
|
|
11
conduct.html
11
conduct.html
|
@ -141,13 +141,10 @@
|
|||
|
||||
<h2>License</h2>
|
||||
|
||||
<p><span xmlns:dct="http://purl.org/dc/terms/" href="https://purl.org/dc/dcmitype/Text" property="dct:title"
|
||||
rel="dct:type">Community Covenant</span> by <a xmlns:cc="http://creativecommons.org/ns#"
|
||||
href="http://community-covenant.net/" property="cc:attributionName" rel="cc:attributionURL">Coraline
|
||||
Ada Ehmke</a> is licensed under a <a rel="license"
|
||||
href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International
|
||||
License</a>.<br />Based on a work at <a xmlns:dct="http://purl.org/dc/terms/"
|
||||
href="http://community-covenant.net/latest/" rel="dct:source">http://community-covenant.net/</a>.
|
||||
<p>
|
||||
Community Covenant by <a href="http://community-covenant.net/">Coraline Ada Ehmke</a> is licensed under a
|
||||
<a href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.<br />
|
||||
Based on a work at <a href="http://community-covenant.net/latest/">http://community-covenant.net/</a>.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -45,16 +45,17 @@
|
|||
<li>No one shall dissuade or stop anyone from making anything, especially if it's a bad idea.</li>
|
||||
<li>"Fuck it, we'll do it live" is always acceptable.</li>
|
||||
<li>Maybe policy should go on the website.</li>
|
||||
<li>> For policy proposals in chat.</li>
|
||||
<ol class="nested">
|
||||
<li>> For policy proposals in chat.
|
||||
<ol class="">
|
||||
<li>Un defined, (but positive) number of ✅ are needed for policy approvals.</li>
|
||||
<li>Ticks must outweigh ❌ votes</li>
|
||||
</ol>
|
||||
</li>
|
||||
<li>No hacker shall intentionally set another hacker on fire, or through inaction allow another hacker to be
|
||||
set on fire.</li>
|
||||
<li>For the avoidance of doubt, explosions are a type of fire.</li>
|
||||
<li>Disputes between members will be settled non-violently through a game of Guess Who?</li>
|
||||
<li>Policy items in <blink><blink></blink> tags are only in effect whilst visible.</li>
|
||||
<li>Policy items in <span class="blink"><blink></span> tags are only in effect whilst visible.</li>
|
||||
<li>Policy is not serious, see Code of Conduct for serious things.</li>
|
||||
<li>If it can be run non-combustably at full brightness, it shall be run non-combustably at full brightness.</li>
|
||||
<li>If it can be horribly overengineered, it shall be horribly overengineered.</li>
|
||||
|
|
29
style.css
29
style.css
|
@ -4,7 +4,7 @@ body {
|
|||
font-family: "Comic Sans MS", "open-dyslexic";
|
||||
}
|
||||
|
||||
blink {
|
||||
.blink {
|
||||
animation: blinker 0.6s linear infinite;
|
||||
transform: translateZ(0);
|
||||
}
|
||||
|
@ -76,33 +76,6 @@ ul.fisher-price-links>li>a {
|
|||
transform: translateZ(0);
|
||||
}
|
||||
|
||||
.nested li {
|
||||
display: block;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nested {
|
||||
margin-bottom: 0;
|
||||
counter-reset: number;
|
||||
}
|
||||
|
||||
.parent .nested {
|
||||
counter-reset: letter;
|
||||
}
|
||||
|
||||
.parent .nested li::before {
|
||||
content: counter(letter, lower-alpha) ".";
|
||||
counter-increment: letter;
|
||||
}
|
||||
|
||||
.nested li::before {
|
||||
content: counter(number) ".";
|
||||
counter-increment: number;
|
||||
position: absolute;
|
||||
margin-right: 100%;
|
||||
right: 10px;
|
||||
}
|
||||
|
||||
div.code-of-conduct>p, div.code-of-conduct>ul {
|
||||
text-align: left;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue