38 lines
591 B
CSS
Executable File
38 lines
591 B
CSS
Executable File
body
|
|
{
|
|
background-image:url("../pictures/setting_picture/fond.jpg");
|
|
background-attachment:fixed;
|
|
background-repeat:no-repeat;
|
|
background-position:100% 100%;
|
|
background-size:cover;
|
|
}
|
|
|
|
table
|
|
{
|
|
border: 1px solid grey;
|
|
width : 95%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
box-shadow: 0 0 2px dimgrey;
|
|
}
|
|
|
|
table thead tr td /*en tete du tableau */
|
|
{
|
|
border-bottom: 1px solid silver;
|
|
padding: 2%;
|
|
font-weight: normal;
|
|
color: #139DFA;
|
|
background: white;
|
|
}
|
|
|
|
table tbody tr td /*corps du tableau */
|
|
{
|
|
padding : 1%;
|
|
background: white;
|
|
}
|
|
|
|
.addRef
|
|
{
|
|
position: fixed;
|
|
left : 70%;
|
|
} |