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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
| body {
background: url('/Users/virginie/Desktop/WebPjojects2015/creations/easyC/Easy_design/fondcyan.png') repeat;
}
#bloc_body
{
font-family: 'Open Sans', sans-serif;
background: url('/Users/virginie/Desktop/WebPjojects2015/creations/easyC/Easy_design/fondcyan.png') repeat;
width: 100%;
margin: auto;
}
header
{
margin-top: 30px;
}
/*-------------------------------------------------N A V I G A T I O N ------------------------------------------*/
#menu table {
margin-top: 10px;
background-image: linear-gradient(#8e8e8e, #d9d9d9, #8e8e8e);
box-shadow: 2px 2px 3px black;
border-radius: 9px;
font-size: 20px;
width: 1400px;
}
#menucss ul {
text-align: left;
display: inline;
margin: 0;
padding: 10px 14px 30px 0;
list-style: none;
color: black;
width: auto;
}
#menucss ul li {
display: inline-block;
margin-right: -4px;
position: relative;
padding: 28px 20px;
cursor: pointer;
-webkit-transition: all 0.2s;
-moz-transition: all 0.2s;
-ms-transition: all 0.2s;
-otransition: all 0.2s;
transition: all 0.2s;
}
#menucss ul li:hover{
background: #8e8e8e;
}
#menucss ul li ul {
padding: 0;
position: absolute;
top: 90px;
left: -2px;
width: 150px;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
opacity: 0;
visibility: hidden;
-webkit-transition: opacity 0.2s;
-moz-transition: opacity 0.2s;
-o-transition: opacity 0.2s;
-transition: opacity 0.2s;
}
#menucss ul li ul li {
background: #d9d8e5;
display: block;
color: #fff;
}
#menucss ul li ul li:hover {
background: #8e8e8e;
text-decoration: none;
}
#menucss ul li:hover ul {
display: block;
opacity: 1;
visibility: visible;
box-shadow: 2px 2px 3px black;
border-radius: 9px;
}
#menucss ul li a {
text-decoration: none;
color: black;
padding-top: 30px;
padding-bottom: 5px;
}
#menucss ul li ul li:last-child{
border-radius: 0 0 3px 3px;
}
/*-------------------------------------------------N A V I G A T I O N ------------------------------------------*/
/* ---------------------------IMG SOCIAL----------------------------------------------------------- */
#bloc_page
{
margin-top: 60px;
background-color: white;
width: 75%;
text-align: center;
margin-left: 155px;
border-radius: 4px 4px 4px 4px;
box-shadow: 6px 6px 6px 6px #040435;
}
#bloc_page nav ul li {
display: inline-block;
float: left;
}
#bloc_page nav a.fb {
background: url('/Users/virginie/Desktop/WebPjojects2015/creations/easyC/Easy_design/walletfbof2.png') no-repeat;
width: 85px;
height: 134px;
}
#bloc_page nav a.fb:hover {
background: url('/Users/virginie/Desktop/WebPjojects2015/creations/easyC/Easy_design/walletfb1.png');
width: 85px;
height: 134px;
}
#bloc_page nav a.tw {
background: url('/Users/virginie/Desktop/WebPjojects2015/creations/easyC/Easy_design/wallettwitterof2.png') no-repeat;
width: 85px;
height: 134px;
}
#bloc_page nav a.tw:hover {
background: url('/Users/virginie/Desktop/WebPjojects2015/creations/easyC/Easy_design/wallettwitter1.png');
width: 85px;
height: 134px;
}
#bloc_page nav a.g_plus {
background: url('/Users/virginie/Desktop/WebPjojects2015/creations/easyC/Easy_design/walletgplusof2.png') no-repeat;
width: 85px;
height: 134px;
}
#bloc_page nav a.g_plus:hover {
background: url('/Users/virginie/Desktop/WebPjojects2015/creations/easyC/Easy_design/walletgplus.png');
width: 85px;
height: 134px;
}
#bloc_page nav a {
display: inline-block;
float: left;
}
#bloc_page nav a:hover {
display: inline-block;
float: left;
}
/* ---------------------------IMG SOCIAL----------------------------------------------------------- */
.map {
position: absolute;
top: 190px;
right: 210px;
}
#expl {
font-size: 1.5em;
padding-top: 10px;
} |
Partager