rejestracja/style.css

69 lines
780 B
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-01 22:51:05 +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;
}
td
{
width: 200px;
}
2021-02-08 21:30:39 +01:00
td:first-child
{
width: 5px;
}
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;
width: 33.33%;
padding: 10px;
2021-02-08 21:30:39 +01:00
height: 200px;
flex: 1;
padding: 16px;
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-01 22:51:05 +01:00
}