91 lines
1.0 KiB
CSS
91 lines
1.0 KiB
CSS
body
|
|
{
|
|
background-color: aqua;
|
|
}
|
|
#tabele
|
|
{
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
#logowanie
|
|
{
|
|
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
|
|
{
|
|
/*border: 1px solid black;*/
|
|
table-layout: fixed;
|
|
}
|
|
tr,td
|
|
{
|
|
border: 1px solid black;
|
|
background-color: #F4EADF;
|
|
}
|
|
td
|
|
{
|
|
width: 200px;
|
|
}
|
|
td:nth-child(1)
|
|
{
|
|
width: 50px;
|
|
}
|
|
td:nth-child(2)
|
|
{
|
|
width: 100px;
|
|
}
|
|
td:nth-child(3)
|
|
{
|
|
width: 50px;
|
|
}
|
|
td:nth-child(4)
|
|
{
|
|
width: 50px;
|
|
}
|
|
td:nth-child(5)
|
|
{
|
|
width: 30px;
|
|
}
|
|
td:nth-child(6)
|
|
{
|
|
width: 60px;
|
|
}
|
|
.tabela
|
|
{
|
|
height: 300px;
|
|
margin-top: 50px;
|
|
float: left;
|
|
width: 33%;
|
|
padding: 10px;
|
|
height: 200px;
|
|
flex: 1;
|
|
padding: 16px;
|
|
text-align: center;
|
|
}
|
|
#czysc
|
|
{
|
|
clear: both;
|
|
}
|
|
#wrap
|
|
{
|
|
padding:10px;
|
|
}
|
|
input[type=button]
|
|
{
|
|
width: 100%;
|
|
border: none;
|
|
} |