🎨 remove blue in links of the bootstrap lib, add strike line on create button

This commit is contained in:
tykayn 2019-08-12 15:06:41 +02:00
parent 2d03578a1d
commit 07989e454f
4 changed files with 377 additions and 349 deletions

View File

@ -123,13 +123,11 @@
}
a {
color: #007bff;
text-decoration: none;
background-color: transparent;
}
a:hover {
color: #0056b3;
text-decoration: underline;
}
@ -328,4 +326,5 @@
[hidden] {
display: none !important;
}
/*# sourceMappingURL=bootstrap-reboot.css.map */

View File

@ -1,5 +1,9 @@
@charset "UTF-8";
a {
color: $black;
}
// buttons
.btn {
display: inline-block;
@ -29,7 +33,26 @@
border: solid 1px $primary_color;
}
.striked {
@extend .btn-outline;
color: $primary_color;
.btn-next {
@extend .striked;
text-align: right;
width: 100%;
padding: 1em 2em;
a {
display: block;
}
}
.striked {
&::after {
content: "";
display: block;
width: 12ch;
height: 4px;
margin-top: -0.7em;
margin-right: 0;
margin-left: auto;
background-color: $primary_color;
}
}

View File

@ -1,4 +1,5 @@
@charset "UTF-8";
nav {
a {
position: relative;
@ -25,6 +26,7 @@ a {
content: ">";
}
}
}
.home_link {
text-decoration: none;

View File

@ -4,3 +4,7 @@ html {
font-size: 62.5%; /* 10px */
font-size: calc(1em * 0.625); /* fix */
}
.text-right {
text-align: right;
}