summaryrefslogtreecommitdiffstats
path: root/htdocs/css/syntax.css
blob: f425178ee2b113cde7d199dc5c3ed5a38dd87a0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
code {
	border: 0.055em solid var(--highlight-color);
	border-radius: 0.5em;
	padding-top: 0.2em;
	padding-bottom: 0.1em;
	padding-left: 0.5em;
	padding-right: 0.5em;

	display: inline-block;
	vertical-align: middle;

	background-color: #282828;
}

/* HTML */
/* Tag */ code[data-lang="html"] .t { color: var(--highlight-color); }
/* Element */ code[data-lang="html"] .e { color: #9b5712; }
/* AttributeName */ code[data-lang="html"] .an { color: #91931b; }
/* AttributeValue */ code[data-lang="html"] .av { color: red; }