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
| #header-wrap{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 52px;
background: #212121;
border-top: 1px solid rgba(255, 255, 255, 0.4);
border-radius: 0 0 7px 7px;
}
#header {
height: 100%;
width: 940px;
margin: 0 auto;
background: #505050;
}
#logo-wrap {
display: inline-block;
width: 194px;
-webkit-transition: background 0.5s ease-out;
-moz-transition: background 0.5s ease-out;
-o-transition: background 0.5s ease-out;
}
#header img {
border: none;
}
#logo-wrap img {
margin-top: 7px;
margin-left: 7px;
}
#logo-wrap:hover {
background: rgba(255, 255, 255, 0.1);
}
#like-us {
display: inline-block;
position: relative;
left: -10px;
top: 0;
height: 40px;
width: 200px;
vertical-align: top;
}
#like-us a div {
padding: 4px;
padding-right: 8px;
border-radius: 7px;
background: rgba(0, 0, 0, 0.3);
-webkit-transition: background 0.5s ease-out;
-moz-transition: background 0.5s ease-out;
-o-transition: background 0.5s ease-out;
}
#like-us a div:hover {
background: rgba(0, 0, 0, 0.7);
}
#like-us img {
vertical-align: middle;
margin-right: 7px;
}
#like-us a:hover, #like-us a {
text-decoration: none;
color: white;
} |
Partager