@import url("/Assets/CSS/Exercise.css");

.answer {
	display: none;
	color: #AAAAAA;
}
	.answer::before, .help::before {
		content: " : ";
	}

.help {
	display: inline;
	color: #4CAF50;
}

.question {
	cursor: help;
}
	.question:hover + .answer, .answer:hover {
		display: inline;
	}

input {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 0.2rem;
	border: none;
	width: 5rem;
	height: 1.6rem;
	margin: 0.2rem 0;
	font-size: 0.9rem;
	color: white;
	text-align: center;
	vertical-align: middle;
	transition: all 1s;
}
	input.light {
		opacity: 0.3;
}

#Words {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 0.2rem;
	cursor: move;
}
	#Words td {
		float: left;
		width: 4.5rem;
		height: 1.6rem;
		background: black;
		border-radius: 0.2rem;
		margin: 0.2rem;
		padding: 0.2rem;
		text-align: center;
		vertical-align: middle;
		color: white;
		cursor: pointer;
	}

ol {
	list-style-type: devanagari;
}
ol.french {
	list-style-type: decimal;
}
	ol li {
		padding-left: 0.5em;
	}