Blame view

bower_components/prism/plugins/show-language/prism-show-language.css 323 Bytes
73bcce88   luigser   COMPONENTS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  pre[class*='language-'] {
  	position: relative;
  }
  pre[class*='language-'][data-language]::before {
  	content: attr(data-language);
  	color: black;
  	background-color: #CFCFCF;
  	display: inline-block;
  	position: absolute;
  	top: 0;
  	right: 0;
  	font-size: 0.9em;
  	border-radius: 0 0 0 5px;
  	padding: 0 0.5em;
  	text-shadow: none;
  }