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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
| /*---------------------------section joueur-----------------------*/
.joueur{
width:15% ;
height:99.3%;
border:solid;
}
.ListePieceJouable{
display:inline;
}
#Joueur1{
position:absolute;
left:0px;
top:0px;
}
#joueur2{
position:absolute;
right:0px;
top:0px;
}
section[id*="Joueur"] ul{
border:solid;
width:50%;
margin:auto;
}
.joueur h1{
text-align:center;
}
/*-----------------------fin section joueur-----------------------*/
/*-----------------------section score----------------------*/
#score{
position:absolute;
left:30%;
top:0px;
width:40% ;
height:100px;
border:solid;
border-radius:10px;
}
#score h1{
position:relative;
border:solid;
border-top:0px;
width:150px;
margin:auto;
text-align:center;
z-index:2;
background-color:red;
}
#score p{
text-align:center;
font-size:16px;
width:50%;
height:100%;
text-align:center;
font-size:4em;
}
#scoreJoueur1 p{
position:relative;
left:0px;
bottom:95px;
border-right:solid 2px;
text-align:center;
z-index:1;
}
#scoreJoueur2 p{
position:relative;
left:50%;
bottom:259px;
z-index:1;
}
/*-----------------------fin section score----------------------*/
/*------------------------------Nav----------------------------*/
#navBasPage{
position:absolute;
bottom:0px;
left:15.3%;
width:69.4%;
height:80px;
border-top:solid;
border-bottom:solid;
margin:0px;
}
#navBaspage ul{
width:90%;
height:40px;
margin:auto;
margin-top:20px;
list-style-type: none;
}
#navBaspage li{
border:solid;
display:inline-block;
width:200px;
height:25px;
margin-top:3.75px;
margin-right:50px;
margin-left:60px;
background: url('img/fond_degraderouge.png') repeat-x;
border: 1px solid #760001;
border-radius: 5px;
font-size: 1.2em;
text-align: center;
padding: 3px 8px 0px 8px;
color: white;
text-decoration: none;
} |
Partager