/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements. See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership. The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

/* Headings with code formatting should not be red. */

h1 > code, h2 > code, h3 > code, h4 > code, h5 > code {
	color: inherit;
}

/* Markdown alerts */

blockquote.alert-caution {
	border-left: .25em solid #FF0000;
}

p.alert-caution {
	color: #FF0000;
}

svg.alert-caution {
	fill: #FF0000;
	padding-right: .25em;
}

blockquote.alert-important {
	border-left: .25em solid #8250DF;
}

p.alert-important {
	color: #8250DF;
}

svg.alert-important {
	fill: #8250DF;
	padding-right: .25em;
}

blockquote.alert-note {
	border-left: .25em solid #0969DA;
}

p.alert-note {
	color: #0969DA;
}

svg.alert-note {
	fill: #0969DA;
	padding-right: .25em;
}

blockquote.alert-tip {
	border-left: .25em solid #1A7F37;
}

p.alert-tip {
	color: #1A7F37;
}

svg.alert-tip {
	fill: #1A7F37;
	padding-right: .25em;
}

blockquote.alert-warning {
	border-left: .25em solid #FF7F50;
}

p.alert-warning {
	color: #FF7F50;
}

svg.alert-warning {
	fill: #FF7F50;
	padding-right: .25em;
}