* {
	box-sizing: border-box;
	cursor: default;
	position: relative;
}
html, body {
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	font-size: 16px;
	background-color: #fafafa;
}
body {
	padding: 2rem;
	padding-bottom: 20rem;
}
ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}
ul {
	padding-bottom: 0.3rem;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	margin-left: 2rem;
}

a,
a:link,
a:active,
a:hover,
a:focus,
a:visited {
	display: inline-block;
	color: #333;
	text-decoration: none;
	padding: 0.3rem 1rem;
	cursor: pointer;
	border-radius: 0.3rem;
	transition: background-color 0.25s;
}
a:active,
a:hover,
a:focus {
	background-color: rgba(0,0,0,0.1);
}

a:active .link,
a:hover .link,
a:focus .link {
	text-decoration: underline;
}

a * {
	cursor: pointer;
}
 
li,
.file {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	padding: 0.5rem 0;
}

li .icon,
.file .icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2rem;
	min-height: 2rem;
	font-size: 1.5rem;
}

.breadcrumbs {
	font-size: 1.5rem;
	color: #888;
}

.breadcrumb {
	color: #55f !important;
}

.breadcrumb:first-child {
	color: #55f !important;
}

.breadcrumb:last-child {
	color: #55f !important;
}

.file-info {
	opacity: 0;
	pointer-events: none;
	display: inline-block;
	position: absolute;
	left: calc(100% - 1rem);
	bottom: calc(100% - 1.5rem);
	background-color: rgba(0,0,0,0.7);
	color: #fff;
	border-radius: 1rem 1rem 1rem 0;
	padding: 1rem;
	white-space: nowrap;
}

.file-info > * {
	display: block;
}

.file:hover {
	z-index: 99999;
}

.file:hover > .file-info {
	transition: opacity 1s;
	transition-delay: 0.6s;
	opacity: 1;
}

.file-info-label {
	color: #bbb;
}


.file-info-date,
.file-info-time {
	margin-bottom: 0.5rem;
}
