[SUP] Suppression du mot 'DIV' dans les feuilles de style (CSS)
* Ai enlevé l'utilisation du mot DIV dans les feuilles de styles
This commit is contained in:
parent
e7cfb0fefa
commit
608b22d503
@ -42,7 +42,7 @@ border-radius: 12px;
|
|||||||
-webkit-border-radius: 12px;
|
-webkit-border-radius: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#chapeau {
|
#chapeau {
|
||||||
position: relative;
|
position: relative;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@ -61,26 +61,26 @@ border-bottom-right-radius: 25px;
|
|||||||
-webkit-border-radius-bottomleft: 25px;
|
-webkit-border-radius-bottomleft: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#chapeau h1 {
|
#chapeau h1 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
line-height: 50px;
|
line-height: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#corps {
|
#corps {
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 78%;
|
width: 78%;
|
||||||
left: 2%;
|
left: 2%;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#corps ul.ensemble_element {
|
#corps ul.ensemble_element {
|
||||||
min-height: 10em;
|
min-height: 10em;
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
padding: 0 5px;
|
padding: 0 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#corps a.cadre {
|
#corps a.cadre {
|
||||||
height: 9em;
|
height: 9em;
|
||||||
width: 11em;
|
width: 11em;
|
||||||
margin: 0 5px 10px 5px;
|
margin: 0 5px 10px 5px;
|
||||||
@ -97,26 +97,26 @@ text-align: center;
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#corps a.cadre:hover {
|
#corps a.cadre:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
div#corps a.cadre div.element {
|
#corps a.cadre .element {
|
||||||
height: 9em;
|
height: 9em;
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#corps a.cadre div.element img {
|
#corps a.cadre .element img {
|
||||||
margin-top: 2em;
|
margin-top: 2em;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#corps div.espace {
|
#corps .espace {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#cartable {
|
#cartable {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
height: auto;
|
height: auto;
|
||||||
width: 20%;
|
width: 20%;
|
||||||
@ -131,7 +131,7 @@ border-bottom-left-radius: 25px;
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#cartable h3 {
|
#cartable h3 {
|
||||||
width: 90%;
|
width: 90%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border-bottom: solid;
|
border-bottom: solid;
|
||||||
@ -141,17 +141,17 @@ border-radius: 12px;
|
|||||||
-webkit-border-radius: 12px;
|
-webkit-border-radius: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#cartable a:link {
|
#cartable a:link {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#cartable a:visited {
|
#cartable a:visited {
|
||||||
}
|
}
|
||||||
|
|
||||||
div#cartable a:hover {
|
#cartable a:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
div#soulier {
|
#soulier {
|
||||||
position: relative;
|
position: relative;
|
||||||
top: 5px;
|
top: 5px;
|
||||||
right: 5px;
|
right: 5px;
|
||||||
@ -159,7 +159,7 @@ height: 20px;
|
|||||||
width: 98%;
|
width: 98%;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#soulier p {
|
#soulier p {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
|
@ -24,39 +24,39 @@ h3 {
|
|||||||
color: #555577;
|
color: #555577;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#chapeau {
|
#chapeau {
|
||||||
background-color: #223355;
|
background-color: #223355;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#corps a.cadre:hover {
|
#corps a.cadre:hover {
|
||||||
background-color: #223355;
|
background-color: #223355;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#cartable {
|
#cartable {
|
||||||
background-color: #223355;
|
background-color: #223355;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#cartable h3 {
|
#cartable h3 {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
border-color: #ffffff;
|
border-color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#cartable a:link {
|
#cartable a:link {
|
||||||
color: #aaaabb;
|
color: #aaaabb;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#cartable a:visited {
|
#cartable a:visited {
|
||||||
color: #aaaabb;
|
color: #aaaabb;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#cartable a:hover {
|
#cartable a:hover {
|
||||||
background-color: #aaaabb;
|
background-color: #aaaabb;
|
||||||
color: #223355;
|
color: #223355;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#soulier {
|
#soulier {
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
@ -24,39 +24,39 @@ h3 {
|
|||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#chapeau {
|
#chapeau {
|
||||||
background-color: #000000;
|
background-color: #000000;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#corps a.cadre:hover {
|
#corps a.cadre:hover {
|
||||||
background-color: #000000;
|
background-color: #000000;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#cartable {
|
#cartable {
|
||||||
background-color: #000000;
|
background-color: #000000;
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#cartable h3 {
|
#cartable h3 {
|
||||||
color: #ffffff;
|
color: #ffffff;
|
||||||
border-color: #ffffff;
|
border-color: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#cartable a:link {
|
#cartable a:link {
|
||||||
color: #aaaabb;
|
color: #aaaabb;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#cartable a:visited {
|
#cartable a:visited {
|
||||||
color: #aaaabb;
|
color: #aaaabb;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#cartable a:hover {
|
#cartable a:hover {
|
||||||
background-color: #aaaabb;
|
background-color: #aaaabb;
|
||||||
color: #223355;
|
color: #223355;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#soulier {
|
#soulier {
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
@ -42,7 +42,7 @@ border-radius: 12px;
|
|||||||
-webkit-border-radius: 12px;
|
-webkit-border-radius: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#chapeau {
|
#chapeau {
|
||||||
position: relative;
|
position: relative;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
@ -61,26 +61,26 @@ border-bottom-right-radius: 25px;
|
|||||||
-webkit-border-radius-bottomleft: 25px;
|
-webkit-border-radius-bottomleft: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#chapeau h1 {
|
#chapeau h1 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
line-height: 50px;
|
line-height: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#corps {
|
#corps {
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 98%;
|
width: 98%;
|
||||||
left: 2%;
|
left: 2%;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#corps ul.ensemble_element {
|
#corps ul.ensemble_element {
|
||||||
min-height: 10em;
|
min-height: 10em;
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
padding: 0 5px;
|
padding: 0 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#corps a.cadre {
|
#corps a.cadre {
|
||||||
height: 9em;
|
height: 9em;
|
||||||
width: 11em;
|
width: 11em;
|
||||||
margin: 0 5px 10px 5px;
|
margin: 0 5px 10px 5px;
|
||||||
@ -97,26 +97,26 @@ text-align: center;
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#corps a.cadre:hover {
|
#corps a.cadre:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
div#corps a.cadre div.element {
|
#corps a.cadre .element {
|
||||||
height: 9em;
|
height: 9em;
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#corps a.cadre div.element img {
|
#corps a.cadre .element img {
|
||||||
margin-top: 2em;
|
margin-top: 2em;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
border: 0;
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#corps div.espace {
|
#corps .espace {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#cartable {
|
#cartable {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
height: auto;
|
height: auto;
|
||||||
width: 20%;
|
width: 20%;
|
||||||
@ -131,7 +131,7 @@ border-bottom-left-radius: 25px;
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#cartable h3 {
|
#cartable h3 {
|
||||||
width: 90%;
|
width: 90%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border-bottom: solid;
|
border-bottom: solid;
|
||||||
@ -141,17 +141,17 @@ border-radius: 12px;
|
|||||||
-webkit-border-radius: 12px;
|
-webkit-border-radius: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#cartable a:link {
|
#cartable a:link {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#cartable a:visited {
|
#cartable a:visited {
|
||||||
}
|
}
|
||||||
|
|
||||||
div#cartable a:hover {
|
#cartable a:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
div#soulier {
|
#soulier {
|
||||||
position: relative;
|
position: relative;
|
||||||
top: 5px;
|
top: 5px;
|
||||||
right: 5px;
|
right: 5px;
|
||||||
@ -159,7 +159,7 @@ height: 20px;
|
|||||||
width: 98%;
|
width: 98%;
|
||||||
}
|
}
|
||||||
|
|
||||||
div#soulier p {
|
#soulier p {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
|
Loading…
Reference in New Issue
Block a user