miroirs-bac/main.20160607.css

56 lines
794 B
CSS

/* Global divs */
html {
background-color: #DDDDDD;
}
body {
width: 80%;
margin: auto;
margin-top: 20px;
margin-bottom: 20px;
padding: 20px;
background-color: #FFFFFF;
box-shadow: 3px 3px 10px #000000;
}
div.dl {
border: 1px solid #000000;
padding: 10px;
}
/* All tables */
table {
width: 100%;
border-collapse: collapse;
}
table td {
padding: 4px;
}
table th {
border-bottom: 1px solid black;
}
td:not(:last-child),
th:not(:last-child) {
border-right: 1px solid black;
}
tr:not(:last-child) td {
border-bottom: 1px solid gray;
}
/* Compatibility tables */
table.compatibility td.c {
color: green;
}
table.compatibility td.nc {
color: red;
}
table.compatibility td.mc {
color: #FF4000;
}
/* Other things */
p.right {
text-align: right;
}
h4.question {
color: #0404B4;
}