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 12:51:24 +02:00
background: linear-gradient(to left, #8a2be2, rgb(255, 51, 170));
2024-04-30 10:16:11 +02:00
background-position: right top;
background-size: cover;
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;
}
a.button{
display: block;
2024-04-30 13:44:16 +02:00
margin-left: 500px;
margin-right: 500px;
2024-04-30 10:16:11 +02:00
padding: 30px 90px;
border: 3px solid white;
border-radius: 10px;
text-align: center;
text-decoration: none;
font-size: 20px;
color: white;
}
2024-04-30 13:33:36 +02:00
2024-04-30 10:16:11 +02:00
a.button:hover{
background: rgba(255, 255, 255, 0.25);
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
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 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 13:32:18 +02:00
table.queryresults th,
table.queryresults tr:last-child td,
table.queryresults td:nth-last-child(-n+2) {
background-color: rgba(0, 0, 0, 0.1);
2024-04-30 13:19:28 +02:00
}
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 13:33:36 +02:00
margin: 0 auto;
2024-04-30 11:25:48 +02:00
border-radius: 10px;
border-collapse: collapse;
2024-04-30 12:53:34 +02:00
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
2024-04-30 13:00:05 +02:00
overflow: hidden;
2024-04-30 11:06:49 +02:00
}
table th, table td
{
border: 1px solid white;
padding: 10px;
}
2024-04-30 11:25:48 +02:00
table th
2024-04-30 11:06:49 +02:00
{
2024-04-30 11:25:48 +02:00
border-top: none;
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
table th:last-child, table td:last-child
2024-04-30 11:06:49 +02:00
{
2024-04-30 11:25:48 +02:00
border-right: none;
2024-04-30 11:06:49 +02:00
}
2024-04-30 11:25:48 +02:00
table tr:last-child td
2024-04-30 11:06:49 +02:00
{
2024-04-30 11:25:48 +02:00
vertical-align: middle;
2024-04-30 11:39:43 +02:00
border-bottom: none;
text-align: center;
2024-04-22 14:50:21 +02:00
}
2024-04-30 11:25:48 +02:00
table th:first-child, table td:first-child
2024-04-22 14:50:21 +02:00
{
2024-04-30 11:25:48 +02:00
border-left: none;
}
table tr:first-child td
{
border-top: none;
}
.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 {
border: 2px solid #ff5c33;
background: transparent;
color: white;
font-size: 16px;
2024-04-30 12:44:51 +02:00
transition: background 0.3s ease, box-shadow 0.3s ease;
border-radius: 5px;
2024-04-30 11:46:15 +02:00
}
button:hover
{
background: #ff5c33;
2024-04-30 12:44:51 +02:00
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
2024-04-30 11:11:47 +02:00
}