Skip to content

Commit

Permalink
Merge pull request #63 from esciencecenter-digital-skills/add_bullet_…
Browse files Browse the repository at this point in the history
…points

Add explicit style for bullet points
  • Loading branch information
JaroCamphuijsen authored Jun 19, 2024
2 parents 8647219 + cdc8ba8 commit 82a7c00
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 9 deletions.
40 changes: 31 additions & 9 deletions layouts/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,36 @@
@import url('reveal.js/dist/reveal.css');
@import url('~/layouts/nlesc-decorations.scss');

p, ul, ol{
a{
text-decoration: underline;
}
}

#footer{
a {
text-decoration: underline;
@tailwind base;

@layer base {
ul, ol, li{
list-style-type: revert;
}
}

p, ul{
a{
// text-decoration: revert;
color: #380339;
// text-underline-offset: 3px;
font-weight: bold;

}
a:after{
padding-right: 1em;
content: "";
background: url("~/public/icons/external-link.svg") no-repeat 0 0;
background-size: 100%;
// width: 15px;
// height: 15px;
}
}

#footer{
a{
text-decoration: revert;
}
}

}
4 changes: 4 additions & 0 deletions public/icons/external-link.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 82a7c00

Please sign in to comment.