forked from tykayn/funky-framadate-front
🎨 remove blue in links of the bootstrap lib, add strike line on create button
This commit is contained in:
parent
2d03578a1d
commit
07989e454f
3
src/assets/css/bootstrap-reboot-4.3.1.css
vendored
3
src/assets/css/bootstrap-reboot-4.3.1.css
vendored
@ -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 */
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
@ -1,4 +1,5 @@
|
||||
@charset "UTF-8";
|
||||
nav {
|
||||
|
||||
a {
|
||||
position: relative;
|
||||
@ -25,6 +26,7 @@ a {
|
||||
content: ">";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.home_link {
|
||||
text-decoration: none;
|
||||
|
@ -4,3 +4,7 @@ html {
|
||||
font-size: 62.5%; /* 10px */
|
||||
font-size: calc(1em * 0.625); /* fix */
|
||||
}
|
||||
|
||||
.text-right {
|
||||
text-align: right;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user