2020-06-14 04:25:11 +02:00
|
|
|
* {
|
|
|
|
font-family: Roboto, Mono;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
table{
|
|
|
|
width: 50%;
|
|
|
|
margin: 30px auto;
|
|
|
|
border-collapse: collapse;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
tr {
|
|
|
|
border-bottom: 1px solid #cbcbcb;
|
|
|
|
}
|
|
|
|
th, td{
|
|
|
|
border: none;
|
|
|
|
height: 30px;
|
|
|
|
padding: 2px;
|
|
|
|
}
|
|
|
|
tr:hover {
|
|
|
|
background: #F5F5F5;
|
|
|
|
}
|
|
|
|
|
|
|
|
form {
|
|
|
|
width: 45%;
|
|
|
|
margin: 50px auto;
|
|
|
|
text-align: left;
|
|
|
|
padding: 20px;
|
|
|
|
border: 1px solid #bbbbbb;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-group {
|
|
|
|
margin: 10px 0px 10px 0px;
|
|
|
|
}
|
|
|
|
.input-group label {
|
|
|
|
display: block;
|
|
|
|
text-align: left;
|
|
|
|
margin: 3px;
|
|
|
|
}
|
|
|
|
.input-group input {
|
|
|
|
height: 30px;
|
|
|
|
width: 93%;
|
|
|
|
padding: 5px 10px;
|
|
|
|
font-size: 16px;
|
|
|
|
border-radius: 5px;
|
|
|
|
border: 1px solid gray;
|
|
|
|
}
|
2020-06-17 05:34:36 +02:00
|
|
|
|
|
|
|
.search-group input {
|
|
|
|
height: 30px;
|
|
|
|
width: 93%;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
2020-06-14 04:25:11 +02:00
|
|
|
.btn {
|
|
|
|
padding: 10px;
|
|
|
|
font-size: 15px;
|
|
|
|
color: white;
|
|
|
|
background: #5F9EA0;
|
|
|
|
border: none;
|
|
|
|
border-radius: 5px;
|
|
|
|
}
|
2020-06-17 01:02:47 +02:00
|
|
|
|
|
|
|
.create_btn {
|
2020-06-17 05:39:19 +02:00
|
|
|
text-decoration: none;
|
|
|
|
padding: 2px 5px;
|
|
|
|
background: #5F9EA0;
|
|
|
|
color: white;
|
|
|
|
border-radius: 3px;
|
|
|
|
margin: 400px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.back_btn {
|
2020-06-17 01:02:47 +02:00
|
|
|
text-decoration: none;
|
|
|
|
padding: 2px 5px;
|
|
|
|
background: #88B8E7;
|
|
|
|
color: white;
|
|
|
|
border-radius: 3px;
|
|
|
|
margin: 400px;
|
|
|
|
}
|
|
|
|
|
2020-06-14 04:25:11 +02:00
|
|
|
.edit_btn {
|
|
|
|
text-decoration: none;
|
|
|
|
padding: 2px 5px;
|
|
|
|
background: #2E8B57;
|
|
|
|
color: white;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.del_btn {
|
|
|
|
text-decoration: none;
|
|
|
|
padding: 2px 5px;
|
|
|
|
color: white;
|
|
|
|
border-radius: 3px;
|
|
|
|
background: #800000;
|
|
|
|
}
|