<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.rotate-4
	{
		-moz-transform: rotate(4deg);
		-webkit-transform: rotate(4deg);
		-o-transform: rotate(4deg);
		-ms-transform: rotate(4deg);
		transform: rotate(4deg);
	}

.post-it
	{
		color: #1B07AD; /* Schriftfarbe */
		font-family: 'desyrelregular', cursive;
		font-size: 1.10rem;
		font-weight: 400;
		font-style: normal;
		text-align: center;
		width: 230px; /* Post-It-Breite */
		min-height: 140px; /* Post-It-Hoehe */
		margin-left: 50px;
		margin-bottom: 50px;  
		padding-top: 3px;
		padding-left: 8px;
		padding-right: 8px;
		position: relative;
		border: 1px solid #E1E1E1;  
		border-top: 25px solid #FFFBB9; /* oberer Kleberand */
		border-top-right-radius: 30px 10px;		
		border-bottom-right-radius: 60px 5px;
		display: inline-block;    
		background: rgb(255,253,215); /* Old browsers */
		background: -moz-linear-gradient(-45deg, rgba(255,251,185,1) 77%, rgba(255,253,215,1) 100%); /* UNGEPRUEFT FF3.6+ */
		background: -webkit-gradient(linear, left top, right bottom, color-stop(77%,rgba(255,251,185,1)), color-stop(100%,rgba(255,253,215,1))); /* UNGEPRUEFT Chrome, Safari4+ */
		background: -o-linear-gradient(-45deg, rgba(255,251,185,1) 77%, rgba(255,253,215,1) 100%); /* UNGEPRUEFT Opera 11.10+ */
		background: -ms-linear-gradient(-45deg, rgba(255,251,185,1) 77%, rgba(255,253,215,1) 100%); /* UNGEPRUEFT IE10+ */
		background: -webkit-linear-gradient(-45deg, rgba(255,253,215,1) 77%, rgba(255,253,215,1) 100%); /* OK Chrome10+, Safari5.1+, iOS 5 */
		background: linear-gradient(-45deg, rgba(255,253,215,1) 23%, rgba(255,251,185,1) 100%); /* OK W3C =&gt; IE11, FF31, Chrome37 */ /* RECHTS UNTEN, LINKS OBEN */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFDD7', endColorstr='#FFFDD7',GradientType=0 ); /* OK IE6-9 fallback on horizontal gradient */
	}

.post-it:after
	{     
		content: "";
		position: absolute;
		z-index: -1;
		right: -0px;
		bottom: 20px;
		width: 200px;
		height: 25px;
		background: rgba(0, 0, 0, 0.2);
		box-shadow: 2px 15px 5px rgba(0, 0, 0, 0.50);
			-moz-transform: matrix(-1, -0.1, 0, 1, 0, 0);
		 -webkit-transform: matrix(-1, -0.1, 0, 1, 0, 0);
			  -o-transform: matrix(-1, -0.1, 0, 1, 0, 0);
			 -ms-transform: matrix(-1, -0.1, 0, 1, 0, 0);
				 transform: matrix(-1, -0.1, 0, 1, 0, 0);
	}</pre></body></html>