Skip to content

Commit

Permalink
quicktips/index-data/local.css: Fully internationalise for rtl.
Browse files Browse the repository at this point in the history
  • Loading branch information
r12a committed May 26, 2022
1 parent da737ea commit 8fff04c
Showing 1 changed file with 17 additions and 10 deletions.
27 changes: 17 additions & 10 deletions quicktips/index-data/local.css
Expand Up @@ -2,27 +2,34 @@ span.tip {
font-weight: normal;
}
dl p {
margin-left: 0;
margin-right: 0;
margin-inline-start: 0;
margin-inline-end: 0;
}
dl dl {
margin-left: 0px;
margin-right: 0px;
margin-inline-start: 0px;
margin-inline-end: 0px;
}
dd {
margin-left: 0;
margin-inline-start: 0;
}
.tipdl {
margin-top: 3em;
margin-bottom: .5em;
margin-left: -10px;
margin-block-start: 3em;
margin-block-end: .5em;
margin-inline-start: -10px;
text-align: start;
background-color: #ffe;
border: 1px solid #CCC;
box-shadow: 7px 7px 5px #888;
padding: 5px 10px 5px 15px;
padding-block: 5px;
padding-inline-start: 10px;
padding-inline-end: 15px;
border-radius: 10px;
}
}
.tipdl:dir(rtl) {
padding-block: 5px;
padding-inline-start: 15px;
padding-inline-end: 10px;
}
dt a:link {
color: black;
}
Expand Down

0 comments on commit 8fff04c

Please sign in to comment.