Basic navs and auth pages working·

This commit is contained in:
vjrj 2017-11-27 17:37:06 +01:00
parent 33e8a9f384
commit 3ef6f3c80b
20 changed files with 222 additions and 33 deletions

View file

@ -21,6 +21,18 @@ body {
p {
color: $gray-light;
a {
color: $gray-light;
}
a:hover,
a:active,
a:focus {
text-decoration: none;
color: $gray;
}
}
ul {
@ -53,3 +65,10 @@ body {
margin-right: 30px;
}
}
.reverse {
display:inline-block;
-moz-transform: rotate(-180deg);
-webkit-transform: rotate(-180deg);
transform: rotate(-180deg);
}