fixes after PRs
This commit is contained in:
parent
4a8f9aa798
commit
3a5a676118
11 changed files with 73 additions and 53 deletions
|
@ -12,7 +12,7 @@ a.button {
|
|||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 8px 18px;
|
||||
margin-bottom: 5px;
|
||||
margin: 5px 0;
|
||||
text-decoration: none;
|
||||
text-align: center;
|
||||
border-radius: 8;
|
||||
|
|
|
@ -4,6 +4,7 @@ input, textarea, select {
|
|||
border: 1px solid $accent;
|
||||
border-radius: 0;
|
||||
padding: 10px;
|
||||
margin: 5px 0;
|
||||
font: inherit;
|
||||
appearance: none;
|
||||
|
||||
|
@ -28,3 +29,15 @@ select {
|
|||
::placeholder {
|
||||
color: transparentize($accent, .5);
|
||||
}
|
||||
|
||||
input {
|
||||
&[type="checkbox"] {
|
||||
vertical-align: middle;
|
||||
padding: 10px;
|
||||
box-shadow: inset 0 0 0 3px $background;
|
||||
|
||||
&:checked {
|
||||
background: $accent;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -33,6 +33,14 @@
|
|||
font-size: 1rem;
|
||||
margin-bottom: 10px;
|
||||
color: transparentize($accent, .3);
|
||||
|
||||
& > *:not(:first-child) {
|
||||
&::before {
|
||||
content: "::";
|
||||
display: inline-block;
|
||||
margin: 0 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&-title {
|
||||
|
@ -72,16 +80,6 @@
|
|||
margin-top: 30px;
|
||||
}
|
||||
|
||||
input[type="checkbox"] {
|
||||
vertical-align: middle;
|
||||
padding: 5px;
|
||||
margin: 0 .2em .25em -.2em;
|
||||
}
|
||||
|
||||
input[type="checkbox"]:checked {
|
||||
background: $accent;
|
||||
}
|
||||
|
||||
&-cover {
|
||||
border: 20px solid $accent;
|
||||
background: transparent;
|
||||
|
|
|
@ -16,5 +16,4 @@
|
|||
@import "syntax";
|
||||
@import "code";
|
||||
@import "terms";
|
||||
@import "term";
|
||||
@import "gist";
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
h1.term {
|
||||
color: $accent;
|
||||
}
|
|
@ -1,9 +1,22 @@
|
|||
.terms {
|
||||
h1 {
|
||||
color: $accent;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: initial;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
|
||||
li {
|
||||
a {
|
||||
color: $accent;
|
||||
}
|
||||
}
|
||||
|
||||
li:not(:empty):before {
|
||||
content: '-';
|
||||
position: absolute;
|
||||
left: -20px;
|
||||
color: $accent;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue