1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
| #compagny_page {
padding: 4px 4px 24px 4px;
color: #f1f3f2; /* LITE GREY */
}
#compagny_page > h4 {
margin-bottom: 0;
text-align: center;
}
#compagny_page > h1 {
margin-top: 0;
text-align: center;
}
#compagny_page > fieldset {
margin: 10px 10px 0;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
-khtml-border-radius: 4px;
border-radius: 4px;
border-color: transparent;
background-color: #F1F3F2; /* LITE GREY */
color: grey;
}
#compagny_page fieldset:first-child {
background: red;
}
#compagny_page > fieldset > legend {
padding: 4px 12px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
-ms-border-radius: 4px;
-o-border-radius: 4px;
-khtml-border-radius: 4px;
border-radius: 4px;
box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.2) inset;
-webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.2) inset;
-moz-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.2) inset;
-o-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.2) inset;
background-color: grey;
color: white;
font-family: 'Carrois Gothic SC', sans-serif;
}
#compagny_page > fieldset > div {
overflow: auto;
margin: 12px 0 0;
}
#compagny_page > fieldset > div > label {
float: left;
margin: 0 8px;
min-width: 120px;
height: 100%;
line-height: 26px;
font-weight: bold;
}
#compagny_page > fieldset > div > p,
#compagny_page > fieldset > div > ul {
margin: 0;
float: left;
}
#compagny_page > fieldset > div > ul > li {
padding: 4px;
}
#compagny_page > fieldset > div > ul > li > span {
display: inline-block;
width: 120px;
font-weight: bold;
} |
Partager