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

156 lines
2.5 KiB
CSS
Raw Normal View History

2024-04-30 12:44:51 +02:00
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body{
2024-04-30 20:34:10 +02:00
background-image: url("./img/hatter.png");
2024-04-30 12:44:51 +02:00
font-family: 'Roboto', sans-serif;
2024-04-30 10:16:11 +02:00
}
2024-04-30 13:33:36 +02:00
2024-04-30 10:16:11 +02:00
h1{
text-align: center;
color: white;
2024-04-30 13:33:36 +02:00
font-size: 40px;
2024-04-30 10:16:11 +02:00
}
2024-04-30 13:33:36 +02:00
2024-04-30 10:16:11 +02:00
h2{
text-align: center;
2024-04-30 13:33:36 +02:00
color: white;
2024-04-30 10:16:11 +02:00
}
input{
background: transparent;
border: 2px solid white;
}
2024-04-30 13:33:36 +02:00
2024-04-30 10:16:11 +02:00
input:focus{
border: 2px solid #ff5c33;
outline: none;
}
2024-05-05 21:59:58 +02:00
.button{
2024-04-30 10:16:11 +02:00
display: block;
2024-05-05 21:59:58 +02:00
margin-left: auto;
margin-right: auto;
2024-04-30 10:16:11 +02:00
padding: 30px 90px;
2024-05-05 21:59:58 +02:00
max-width: 30%;
2024-04-30 10:16:11 +02:00
border: 3px solid white;
border-radius: 10px;
text-align: center;
text-decoration: none;
font-size: 20px;
color: white;
2024-05-05 21:59:58 +02:00
transition: all 0.3s ease;
2024-04-30 10:16:11 +02:00
}
2024-04-30 13:33:36 +02:00
2024-05-05 21:59:58 +02:00
.button:hover{
2024-04-30 10:16:11 +02:00
background: rgba(255, 255, 255, 0.25);
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
2024-04-30 20:34:10 +02:00
border: 3px solid #ff5c33;
2024-04-30 10:16:11 +02:00
}
2024-04-30 13:33:36 +02:00
2024-04-30 10:16:11 +02:00
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;
2024-04-30 13:33:36 +02:00
margin: 50px auto;
2024-04-30 20:34:10 +02:00
margin-bottom: 20px;
color: white;
2024-04-30 10:16:11 +02:00
}
2024-04-30 13:19:28 +02:00
table.inputs td:first-child{
background-color: rgba(0, 0, 0, 0.1);
}
2024-04-30 20:34:10 +02:00
table.queryresults
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 13:33:36 +02:00
margin: 0 auto;
2024-04-30 20:34:10 +02:00
border-radius: 30px;
2024-04-30 11:25:48 +02:00
border-collapse: collapse;
2024-04-30 11:06:49 +02:00
}
2024-05-06 18:02:49 +02:00
table.queryresults tr:last-child
{
background-color: rgba(0, 0, 0, 0.1);
}
2024-04-30 11:06:49 +02:00
table th, table td
{
2024-04-30 20:34:10 +02:00
border: 2px solid white;
2024-04-30 11:06:49 +02:00
padding: 10px;
}
2024-04-30 11:25:48 +02:00
table th
2024-04-30 11:06:49 +02:00
{
2024-04-30 13:00:05 +02:00
background-color: rgba(0, 0, 0, 0.1);
2024-04-30 11:06:49 +02:00
}
2024-04-30 11:25:48 +02:00
.inputcell
{
padding: 0;
}
.inputcell input
{
color: white;
2024-04-30 11:39:43 +02:00
width: 100%;
height: 100%;
box-sizing: border-box;
margin-left: 10px;
border: none;
font-family: monospace;
font-size: 20px;
2024-04-22 14:50:21 +02:00
}
2024-04-30 11:25:48 +02:00
table td input, table button
2024-04-23 18:19:57 +02:00
{
width: 100%;
box-sizing: border-box;
2024-04-30 11:11:47 +02:00
height: 30px;
2024-04-30 11:46:15 +02:00
}
button {
2024-04-30 20:34:10 +02:00
border: 2px solid white;
2024-04-30 11:46:15 +02:00
background: transparent;
color: white;
font-size: 16px;
2024-04-30 12:44:51 +02:00
border-radius: 5px;
2024-05-05 21:59:58 +02:00
transition: all 0.3s ease;
2024-04-30 11:46:15 +02:00
}
button:hover
{
2024-04-30 20:34:10 +02:00
border: 2px solid #ff5c33;
background: rgba(255, 255, 255, 0.25);
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
button.save{
border: 2px solid white;
background: transparent;
color: white;
font-size: 16px;
border-radius: 5px;
display: block;
margin-left: auto;
margin-right: auto;
padding: 10px 200px;
}
button.save:hover
{
border: 2px solid #ff5c33;
background: rgba(255, 255, 255, 0.25);
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}