/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

html, body {
	font-family: "Source Sans Pro", "Segoe WPC", "Segoe UI", "Ubuntu", "Droid Sans", sans-serif;
	font-size: 12px;
	padding: 0 26px;
	line-height: 1.5em;
	word-wrap: break-word;
}

/**
 *  Body styles
 */

#container {
	position: relative;
	height: 100%;
}

#wrap {
	width: 880px;
	position: relative;
	margin-left: auto;
	margin-right: auto;
}

#logo-wrap {
	margin-bottom: 0;
}

#logo-wrap a {
	font-family: "Faster One";
	font-size: 60px;
	line-height: 60px;
	text-decoration: none;
	color: #dc143c;
	text-shadow: 0 1px 4px rgba(0,0,0,0.3);
  }

h2#subtitle-wrap {
	margin-top: 0px;
	margin-bottom: 20px;
}

h2#subtitle-wrap a {
	font-size: 0.95em;
    color: rgb(105, 105, 105);
    letter-spacing: 2px;
	margin-left: 60px;	
	text-decoration: none;
	text-shadow: rgba(0, 0, 0, 0.3) 0px 1px 4px;
}

#main {
	width: 500px;
	float: left;
}

footer {
	display: block;
}

#footer-info {
	color: Red;
}


/** 
 * Sidebar styles
 */

 #sidebar > div > div > h3, #sidebar-comp > div > div > h3 {
	 font-size: 1.25em;
 }

.widget a, .widget a:visited {
	color:#555;
	text-decoration: none;
}

.widget a:hover {
	text-decoration: none;
	color: #dc143c;
}

#sidebar {
	width: 180px;
	padding-left: 30px;
	float:left;
	display: block;
}

#sidebar-comp {
	width: 160px;
	padding-left: 10px;
	float:right;
	display: block;
}

#sidebar > div > div > div > ul {
	font-size: 0.9em;
	display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 20px;	
}

#sidebar-comp > div > div > div > ul {
	display: block;
	font-size: 0.9em;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 20px;	
}

/**
 * Content/Main
 */

.article-date {
	color: darkgray;
	font-size: 0.9em;
}

div.article-category {
	color: darkgray;
	font-size: 0.9em;
}

div.article-meta > div > div.article-category > a {
	color: darkgray;
}

div.article-meta > div > div.article-category > a:hover {
	color: Crimson;
	text-decoration: none;
}


#main > section > article > div > header > h1 {
	font-size: 1.4em;;
	margin-top: 6px;
	margin-bottom: 3px;
	color: #dc143c;
}

#main > section > article > div > header > h1 > a {
	color: rgb(85, 85, 207);
	text-decoration: none;
}
#main > section > article > div > header > h1 > a:hover {
	color: Crimson;
	text-decoration: none;
}

div.article-entry > ul > li {
	padding-top: 1px;
	padding-bottom: 1px;
}

div.article-entry > ol > li {
	padding-top: 3px;
	padding-bottom: 3px;
}

h1.article-title {
	font-size: 2em;
	font-weight: bold;
	margin-top:18px;
	margin-bottom: 18px;
}

/**
 * General styles 
 */

img {
	max-width: 100%;
	max-height: 100%;
}

a {
	color: rgb(85, 85, 207);
	text-decoration: none;
}

a:visited {
	color: rgb(85, 85, 207);
}

a:hover {
	color: blue;
	text-decoration: underline;
}


a:focus,
input:focus,
select:focus,
textarea:focus {
	outline: 1px solid -webkit-focus-ring-color;
	outline-offset: -1px;
}

hr {
	border: 0;
	height: 2px;
	border-bottom: 2px solid;
}

h1 {
	border-bottom: none;
}

h1, h2, h3 {
	font-weight: normal;
}

table {
	border-collapse: collapse;
}

table > thead > tr > th {
	text-align: left;
	border-bottom: 1px solid;
}

table > thead > tr > th,
table > thead > tr > td,
table > tbody > tr > th,
table > tbody > tr > td {
	padding: 5px 10px;
}

table > tbody > tr + tr > td {
	border-top: 1px solid;
}

blockquote {
	margin: 0 7px 0 5px;
	padding: 0 16px 0 10px;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: cadetblue;
}

code {
	font-family: Menlo, Monaco, Consolas, "Droid Sans Mono", "Courier New", monospace, "Droid Sans Fallback";
	font-size: 1em;
	line-height: 1.357em;
}

body.wordWrap pre {
	white-space: pre-wrap;
}

pre:not(.hljs),
pre.hljs code > div {
	padding: 16px;
	border-radius: 3px;
	overflow: auto;
}

pre code {
	color: var(--vscode-editor-foreground);
	tab-size: 4;
}

/** Theming */

.vscode-light pre {
	background-color: rgba(220, 220, 220, 0.4);
}

.vscode-dark pre {
	background-color: rgba(10, 10, 10, 0.4);
}

.vscode-high-contrast pre {
	background-color: rgb(0, 0, 0);
}

.vscode-high-contrast h1 {
	border-color: rgb(0, 0, 0);
}

.vscode-light table > thead > tr > th {
	border-color: rgba(0, 0, 0, 0.69);
}

.vscode-dark table > thead > tr > th {
	border-color: rgba(255, 255, 255, 0.69);
}

.vscode-light h1,
.vscode-light hr,
.vscode-light table > tbody > tr + tr > td {
	border-color: rgba(0, 0, 0, 0.18);
}

.vscode-dark h1,
.vscode-dark hr,
.vscode-dark table > tbody > tr + tr > td {
	border-color: rgba(255, 255, 255, 0.18);
}
