142 lines
2.3 KiB
CSS
142 lines
2.3 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
|
|
|
|
body{
|
|
background: linear-gradient(to left, #8a2be2, rgb(255, 51, 170));
|
|
background-position: right top;
|
|
background-size: cover;
|
|
font-family: 'Roboto', sans-serif;
|
|
}
|
|
h1{
|
|
text-align: center;
|
|
color: white;
|
|
font-size: 40px
|
|
}
|
|
h2{
|
|
text-align: center;
|
|
color: white
|
|
}
|
|
|
|
input{
|
|
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{
|
|
width: 50%;
|
|
text-align: right;
|
|
margin: 50px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
table
|
|
{
|
|
width: 80%;
|
|
font-size: 20px;
|
|
color: white;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
border-radius: 10px;
|
|
border-collapse: collapse;
|
|
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
table th, table td
|
|
{
|
|
border: 1px solid white;
|
|
padding: 10px;
|
|
}
|
|
|
|
table th
|
|
{
|
|
border-top: none;
|
|
}
|
|
|
|
table th:last-child, table td:last-child
|
|
{
|
|
border-right: none;
|
|
}
|
|
|
|
table tr:last-child td
|
|
{
|
|
vertical-align: middle;
|
|
border-bottom: none;
|
|
text-align: center;
|
|
}
|
|
|
|
table th:first-child, table td:first-child
|
|
{
|
|
border-left: none;
|
|
}
|
|
|
|
table tr:first-child td
|
|
{
|
|
border-top: none;
|
|
}
|
|
|
|
.inputcell
|
|
{
|
|
padding: 0;
|
|
}
|
|
|
|
.inputcell input
|
|
{
|
|
color: white;
|
|
width: 100%;
|
|
height: 100%;
|
|
box-sizing: border-box;
|
|
margin-left: 10px;
|
|
border: none;
|
|
font-family: monospace;
|
|
font-size: 20px;
|
|
}
|
|
|
|
table td input, table button
|
|
{
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
height: 30px;
|
|
}
|
|
|
|
button {
|
|
border: 2px solid #ff5c33;
|
|
background: transparent;
|
|
color: white;
|
|
font-size: 16px;
|
|
transition: background 0.3s ease, box-shadow 0.3s ease;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
button:hover
|
|
{
|
|
background: #ff5c33;
|
|
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
|
|
} |