50 lines
606 B
CSS
50 lines
606 B
CSS
body
|
|
{
|
|
background-color: aqua;
|
|
}
|
|
form
|
|
{
|
|
margin: auto;
|
|
text-align: center;
|
|
margin-top: 20%;
|
|
background-color: pink;
|
|
width: 250px;
|
|
border: 2px solid red;
|
|
padding: 10px;
|
|
}
|
|
.error
|
|
{
|
|
color: red;
|
|
}
|
|
h1
|
|
{
|
|
text-align: center;
|
|
}
|
|
|
|
/*table, th, td {
|
|
border: 1px solid black;
|
|
float: left;
|
|
}*/
|
|
tr,td
|
|
{
|
|
border: 1px solid black;
|
|
}
|
|
td
|
|
{
|
|
width: 200px;
|
|
}
|
|
.tabela
|
|
{
|
|
/*height: 300px;
|
|
margin-top: 50px;*/
|
|
float: left;
|
|
width: 33.33%;
|
|
padding: 10px;
|
|
}
|
|
#czysc {
|
|
clear: both;
|
|
}
|
|
#wrap
|
|
{
|
|
padding:10px;
|
|
} |