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

86 lines
1.2 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-opacity: 0.8;
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{
text-align: left;
margin: 250px;
}
table
2024-04-22 14:50:21 +02:00
{
width: 100%;
2024-04-30 10:16:11 +02:00
font-size: 20px;
color: white;
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 10:16:11 +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-23 18:19:57 +02:00
.list button
{
width: 100%;
height: 30px;
box-sizing: border-box;
}