35 lines
607 B
CSS
35 lines
607 B
CSS
|
body{
|
||
|
background-color: rgb(255, 255, 255);
|
||
|
}
|
||
|
|
||
|
#Überschrift{
|
||
|
color: rgb(0, 0, 0);
|
||
|
}
|
||
|
|
||
|
|
||
|
#Infos{
|
||
|
color: black;
|
||
|
box-shadow: 3px 3px gray ;
|
||
|
background-color: lightgreen;
|
||
|
border-style: solid;
|
||
|
border-radius: 40px;
|
||
|
padding: 5px;
|
||
|
border-width: 1px;
|
||
|
border-color:white;
|
||
|
margin-bottom: 50px;
|
||
|
|
||
|
}
|
||
|
#text_Infos1{
|
||
|
text-align: center;
|
||
|
color: black;
|
||
|
background-color: gray;
|
||
|
border: 2px;
|
||
|
border-style: dashed;
|
||
|
border-color: white;
|
||
|
border-radius: 10px;
|
||
|
}
|
||
|
|
||
|
#Überschrift_Infos1{
|
||
|
color: rgb(7, 253, 7);
|
||
|
text-shadow: 5px 3px rgb(114, 99, 99);
|
||
|
}
|