22-03-2022

This commit is contained in:
2022-03-22 19:28:28 +01:00
parent 0a3eb3d379
commit 414346b7f1
10 changed files with 1440 additions and 39 deletions

View File

@@ -41,6 +41,7 @@ a:link, a:visited {
vertical-align: middle;
}
/**/
.myGallery .caption {
margin: 0;
padding: 1em;
@@ -59,7 +60,6 @@ a:link, a:visited {
color: rgb(255, 255, 255);
font-family: sans-serif;
font-size: 1.2em
/*font: Ubuntu, sans-serif;*/
}
.myGallery .item:hover .caption {
@@ -164,4 +164,47 @@ body {
}
.exif {
color: #999;
}
}
/* insert_bdd.php */
.styled-table {
border-collapse: collapse;
margin: 25px 0;
font-size: 0.9em;
font-family: sans-serif;
min-width: 400px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
.styled-table thead tr {
background-color: #009879;
color: #ffffff;
text-align: left;
}
.styled-table th, .styled-table td {
padding: 12px 15px;
}
.styled-table tbody tr {
border-bottom: 1px solid #dddddd;
}
.styled-table tbody tr:nth-of-type(even) {
background-color: #f3f3f3;
}
.styled-table tbody tr:last-of-type {
border-bottom: 2px solid #009879;
}
.styled-table tbody tr.active-row {
font-weight: bold;
color: #009879;
}
.styled-table img {
width: 150px
}