Skip to content

Commit

Permalink
Minor edits
Browse files Browse the repository at this point in the history
  • Loading branch information
hello@cyan.red committed Dec 18, 2018
1 parent e8b02d2 commit 24c66bd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
9 changes: 3 additions & 6 deletions css_not_selector/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,17 @@ html {
}

.demo-list {
width: 130px;
display: flex;
padding: 0;
text-align: right;
position: relative;
left: -10px;
}

.demo-list li {
list-style-type: none;
padding: 10px 0;
padding: 0 20px;
}

.demo-list li:not(:last-child) {
border-bottom: solid 2px var(--minor-color);
border-right: solid 2px var(--minor-color);
}


Expand Down
2 changes: 2 additions & 0 deletions css_not_selector/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ <h1 class="primary-heading">CSS :not Selector</h1>
<li>Five</li>
</ul>

<p>See also: css_sibling_fade</p>

</main>

<footer>
Expand Down
3 changes: 1 addition & 2 deletions css_spinner/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ <h1 class="primary-heading">CSS Spinner Animation</h1>

<main>

<div class="ring">
</div>
<div class="ring"></div>

</main>

Expand Down
2 changes: 1 addition & 1 deletion css_underline_animation/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ html {
position: absolute;
width: 100%;
transform: scaleX(0);
height: 3px;
height: 2px;
bottom: 0;
left: 0;
background-color: var(--heading-color);
Expand Down

0 comments on commit 24c66bd

Please sign in to comment.