Make `something` more highlighted

Currently it is not easy to distinguish ``something`` from regular
text in rendered HTML documents. This commit make ``something``
more highlighted. Using border for an element in a table is sometimes
not elegant due to double border lines, so no border is used.

Change-Id: Ia68effa43df50a7362e27556714b6182c368b5a5
This commit is contained in:
Akihiro Motoki 2016-06-05 06:37:23 +09:00 committed by KATO Tomoyuki
parent 68a4929a48
commit e82290712d

View File

@ -35,6 +35,19 @@ ol.arabic ol {
ol.arabic ol ol {
list-style-type: upper-alpha; }
tt.literal {
color: #E74C3C;
padding: 1px 3px;
border: solid 1px #e1e4e5;
}
table tt.literal {
color: #E74C3C;
padding: 1px 3px;
border: none;
/* border: solid 1px #e1e4e5; */
}
/* @group Navigation */
#navigation {
display: block;