initial commit
This commit is contained in:
commit
3d068a4adf
78 changed files with 3285 additions and 0 deletions
24
assets/scss/helpers/link.scss
Normal file
24
assets/scss/helpers/link.scss
Normal file
|
@ -0,0 +1,24 @@
|
|||
a:focus, a:active {
|
||||
outline:0 !important;
|
||||
}
|
||||
|
||||
.link {
|
||||
color: inherit;
|
||||
transition: opacity 0.2s;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.link:hover {
|
||||
text-decoration: none;
|
||||
opacity: 0.8;
|
||||
transition: opacity 0.2s;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.link.link-primary {
|
||||
color: $primary-color;
|
||||
}
|
||||
|
||||
.link.no-opacity:hover {
|
||||
opacity: 1 !important;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue