2020-12-21 09:40:49 +01:00
|
|
|
* {
|
2020-12-21 15:41:32 +01:00
|
|
|
padding:0px;
|
|
|
|
margin:0px;
|
2020-12-21 16:07:24 +01:00
|
|
|
|
2020-12-21 09:40:49 +01:00
|
|
|
}
|
|
|
|
header{
|
2020-12-21 15:41:32 +01:00
|
|
|
padding-top: 30px;
|
|
|
|
padding-right: 30px;
|
|
|
|
padding-left: 30px;
|
|
|
|
padding-bottom: 40px;
|
|
|
|
font-weight: bolder;
|
|
|
|
font-size: 30px;
|
|
|
|
color: white;
|
2020-12-21 09:40:49 +01:00
|
|
|
}
|
2020-12-21 16:07:24 +01:00
|
|
|
|
2020-12-21 09:40:49 +01:00
|
|
|
body{
|
2020-12-21 16:07:24 +01:00
|
|
|
background: url("background.jpg");
|
2020-12-21 15:41:32 +01:00
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: cover;
|
2020-12-21 16:07:24 +01:00
|
|
|
background-position: left;
|
|
|
|
color: white;
|
|
|
|
min-height: 100vh;
|
2020-12-21 15:41:32 +01:00
|
|
|
}
|
2020-12-21 16:07:24 +01:00
|
|
|
|
2020-12-21 15:41:32 +01:00
|
|
|
.container{
|
2020-12-21 16:07:24 +01:00
|
|
|
margin: 10px 10px;
|
|
|
|
width: calc(100% - 20px);
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2020-12-21 09:40:49 +01:00
|
|
|
}
|
2020-12-21 16:07:24 +01:00
|
|
|
|
2020-12-21 14:12:15 +01:00
|
|
|
input[type=text]{
|
2020-12-21 15:41:32 +01:00
|
|
|
width:43%;
|
|
|
|
background: white;
|
2020-12-21 09:40:49 +01:00
|
|
|
border:2px solid #aaa;
|
2020-12-21 15:41:32 +01:00
|
|
|
border-radius:20px;
|
2020-12-21 09:40:49 +01:00
|
|
|
margin:8px 0;
|
|
|
|
outline:none;
|
|
|
|
padding:8px;
|
|
|
|
box-sizing:border-box;
|
|
|
|
transition:.3s;
|
|
|
|
}
|
2020-12-21 15:41:32 +01:00
|
|
|
.change{
|
|
|
|
padding-bottom: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
button[type=submit]{
|
|
|
|
border: 1px solid #000000;
|
|
|
|
border-radius: 15px;
|
|
|
|
background: white;
|
|
|
|
padding: 10px 20px;
|
|
|
|
font-size:20px ;
|
|
|
|
font-family: "montserrat";
|
|
|
|
cursor: pointer;
|
|
|
|
margin: 10px;
|
|
|
|
color: #000000;
|
|
|
|
transition: 0.8s;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
}
|
|
|
|
button[type=submit]:hover{
|
|
|
|
color:white;
|
|
|
|
}
|
2020-12-21 09:40:49 +01:00
|
|
|
|
|
|
|
input[type=text]:focus{
|
2020-12-21 14:12:15 +01:00
|
|
|
border-color: dodgerBlue;
|
2020-12-21 09:40:49 +01:00
|
|
|
box-shadow:0 0 8px 0 dodgerBlue;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
h1{
|
|
|
|
text-align: center;
|
|
|
|
}
|
2020-12-21 14:12:15 +01:00
|
|
|
|
2020-12-21 09:40:49 +01:00
|
|
|
.table-dec{
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
2020-12-21 14:12:15 +01:00
|
|
|
|
2020-12-21 09:40:49 +01:00
|
|
|
}
|
|
|
|
.content-table {
|
|
|
|
border-collapse: collapse;
|
|
|
|
margin: 25px 0;
|
|
|
|
font-size: 0.9em;
|
|
|
|
min-width: 400px;
|
|
|
|
border-radius: 5px 5px 0 0;
|
|
|
|
overflow: hidden;
|
|
|
|
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-table thead tr {
|
|
|
|
width:100%;
|
|
|
|
background-color: #009879;
|
|
|
|
color: #ffffff;
|
|
|
|
text-align: left;
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-table th,
|
|
|
|
.content-table td {
|
|
|
|
padding: 12px 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-table tbody tr {
|
|
|
|
border-bottom: 1px solid #dddddd;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-table tbody tr:nth-of-type(even) {
|
|
|
|
background-color: rgba(243, 243, 243, 0.7);
|
2020-12-21 16:07:24 +01:00
|
|
|
color: #000;
|
2020-12-21 09:40:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.content-table tbody tr:last-of-type {
|
|
|
|
border-bottom: 2px solid #009879;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content-table tbody tr.active-row {
|
|
|
|
font-weight: bold;
|
|
|
|
color: #009879;
|
|
|
|
}
|
|
|
|
|
|
|
|
.change {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-evenly;
|
2020-12-21 14:12:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.button-dec {
|
|
|
|
}
|