﻿@charset "utf-8";
/* CSS Dokument für das Beispiel: eigene Website auf dem Testserver veröffentlichen */ 

* { box-sizing:border-box;}


body	{ background-color:#dedede;
		  font: 100% "Trebuchet MS", Segoe, "Segoe UI", "DejaVu Sans",  Verdana, sans-serif;}
			
#wrapper
		{ background-color:rgba(244,203,84,1.00);
			width:500px;
			height:500px;
			margin:50px auto 0;}

.geheim{
  background-image:
       repeating-linear-gradient(-45deg, 
                                yellow 0%, 
                                yellow 2%, black 2%, 
                                black 4%, yellow 4%);
	width: 50%;
	padding: 1rem;
	list-style-type: none;
}
.geheim li{background-color: #fff; 
	padding: 2rem;
margin-bottom: 1rem;}

.geheim li:nth-last-of-type(1){
	margin-bottom: 0;
}

/* https://www.mediaevent.de/css/gradient.html */