Files
Prog4_Beadando/WD7UVN_SzTGUI_2023242.Client.JS/wwwroot/style.css

115 lines
1.6 KiB
CSS
Raw Normal View History

2024-04-30 10:16:11 +02:00
body{
background-image: url("img/backround.jpg");
background-position: right top;
background-size: cover;
}
h1{
text-align: center;
color: white;
font-size: 40px
}
h2{
text-align: center;
color: white
}
input{
color: black;
background: transparent;
border: 2px solid white;
}
input:focus{
border: 2px solid #ff5c33;
outline: none;
}
a.button{
display: block;
margin-right: 500px;
margin-left: 500px;
padding: 30px 90px;
border: 3px solid white;
border-radius: 10px;
text-align: center;
text-decoration: none;
font-size: 20px;
color: white;
}
a.button:hover{
background: rgba(255, 255, 255, 0.25);
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
a.bookmark{
text-align: right;
font-size: 20px;
color: white;
text-decoration: none;
margin: 50px;
}
table.inputs{
2024-04-30 11:06:49 +02:00
width: 50%;
text-align: right;
margin: 50px;
margin-left: auto;
margin-right: auto;
2024-04-30 10:16:11 +02:00
}
table
2024-04-22 14:50:21 +02:00
{
2024-04-30 11:06:49 +02:00
width: 80%;
2024-04-30 10:16:11 +02:00
font-size: 20px;
color: white;
2024-04-30 11:06:49 +02:00
margin-left: auto;
margin-right: auto;
}
table th, table td
{
border: 1px solid white;
padding: 10px;
}
.inputcell
{
padding: 0;
margin: 0;
}
.inputcell input
{
color: white;
}
table td input
{
width: 100%;
height: 100%;
height: 30px;
box-sizing: border-box;
2024-04-22 10:12:07 +02:00
}
2024-04-22 14:50:21 +02:00
2024-04-23 18:19:57 +02:00
.list table, .list th, .list td
2024-04-22 14:50:21 +02:00
{
2024-04-30 11:06:49 +02:00
border: 1px solid white;
2024-04-22 14:50:21 +02:00
}
2024-04-23 18:19:57 +02:00
.list table
2024-04-22 14:50:21 +02:00
{
border-collapse: collapse;
}
2024-04-23 18:19:57 +02:00
.list th, .list td
2024-04-22 14:50:21 +02:00
{
padding: 5px;
}
2024-04-30 10:16:11 +02:00
2024-04-22 14:50:21 +02:00
2024-04-30 11:06:49 +02:00
table button
2024-04-23 18:19:57 +02:00
{
width: 100%;
height: 30px;
box-sizing: border-box;
}