initial commit

This commit is contained in:
Matthieu Bessat 2023-01-23 10:07:18 +01:00
commit 3d068a4adf
78 changed files with 3285 additions and 0 deletions

View 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;
}