rejestracja/style.css

91 lines
1.0 KiB
CSS
Raw Normal View History

2021-02-01 22:51:05 +01:00
body
{
background-color: aqua;
}
2021-02-08 21:30:39 +01:00
#tabele
{
display: flex;
width: 100%;
}
#logowanie
2021-02-01 22:51:05 +01:00
{
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;
}
2021-02-08 21:30:39 +01:00
table
{
2021-02-13 21:48:18 +01:00
/*border: 1px solid black;*/
2021-02-08 21:30:39 +01:00
table-layout: fixed;
}
2021-02-01 22:51:05 +01:00
tr,td
{
border: 1px solid black;
2021-02-13 21:48:18 +01:00
background-color: #F4EADF;
2021-02-01 22:51:05 +01:00
}
td
{
width: 200px;
}
2021-02-13 21:48:18 +01:00
td:nth-child(1)
2021-02-08 21:30:39 +01:00
{
2021-02-13 21:48:18 +01:00
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;
2021-02-08 21:30:39 +01:00
}
2021-02-01 22:51:05 +01:00
.tabela
{
2021-02-08 21:30:39 +01:00
height: 300px;
margin-top: 50px;
2021-02-01 22:51:05 +01:00
float: left;
2021-02-13 21:48:18 +01:00
width: 33%;
2021-02-01 22:51:05 +01:00
padding: 10px;
2021-02-08 21:30:39 +01:00
height: 200px;
flex: 1;
padding: 16px;
2021-02-13 21:48:18 +01:00
text-align: center;
2021-02-01 22:51:05 +01:00
}
2021-02-08 21:30:39 +01:00
#czysc
{
2021-02-01 22:51:05 +01:00
clear: both;
}
#wrap
{
padding:10px;
2021-02-08 21:30:39 +01:00
}
input[type=button]
{
width: 100%;
2021-02-13 21:48:18 +01:00
border: none;
2021-02-01 22:51:05 +01:00
}