refactor: global link style
This commit is contained in:
parent
d154d27c37
commit
6b9fb14293
31
src/App.vue
31
src/App.vue
|
@ -42,4 +42,35 @@ export default class App extends Vue {
|
||||||
|
|
||||||
background: #fff;
|
background: #fff;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
display: inline-block;
|
||||||
|
position: relative;
|
||||||
|
color: #fff;
|
||||||
|
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
|
&:visited {
|
||||||
|
color: #fefefa;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:after {
|
||||||
|
content: '';
|
||||||
|
|
||||||
|
display: block;
|
||||||
|
position: absolute;
|
||||||
|
margin-left: 5%;
|
||||||
|
width: 90%;
|
||||||
|
height: .15rem;
|
||||||
|
|
||||||
|
background: #3333be;
|
||||||
|
|
||||||
|
transition: width .2s ease-in-out, margin-left .2s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover:after {
|
||||||
|
margin-left: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -333,24 +333,6 @@
|
||||||
.src, .doc {
|
.src, .doc {
|
||||||
color: #999999;
|
color: #999999;
|
||||||
|
|
||||||
a {
|
|
||||||
display: inline-block;
|
|
||||||
position: relative;
|
|
||||||
color: #fff;
|
|
||||||
|
|
||||||
&:after {
|
|
||||||
content: '';
|
|
||||||
|
|
||||||
display: block;
|
|
||||||
position: absolute;
|
|
||||||
margin-left: 0;
|
|
||||||
width: 100%;
|
|
||||||
height: .15rem;
|
|
||||||
|
|
||||||
background: #3333be;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
span {
|
span {
|
||||||
margin-left: .5em;
|
margin-left: .5em;
|
||||||
color: #4d4d4d;
|
color: #4d4d4d;
|
||||||
|
|
Loading…
Reference in New Issue