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
|
/* TUTORIEL */
.toggle-desc {
display: none;
z-index:2;
}
.tutoriel hr {
width: 96%;
margin-top: 3px;
margin-bottom: 3px;
}
.tutoriel {
position:relative;
float: left;
width: 30%;
background-color: menu;
margin: 5px;
-webkit-box-shadow: 0px 0px 2px 1px rgba(224,220,237,1);
-moz-box-shadow: 0px 0px 2px 1px rgba(224,220,237,1);
box-shadow: 0px 0px 2px 1px rgba(224,220,237,1);
}
.tutoriel img {
margin-left: 2px;
margin-bottom: 0em;
}
.tutoriel-more {
width: 25px;
height: 25px;
}
.tutoriel .tutoriel-desc{
background-color: menu;
z-index:2;
padding-right: 3px;
padding-left: 6px;
margin-top: -10px;
color: #585858;
-webkit-margin-before: 0em;
-webkit-margin-after: 0em;
-webkit-margin-start: 0px;
-webkit-margin-end: 0px;
font-size: 13px;
}
.tutoriel .tutoriel-read {
margin: 0px -10px 5px 5px;
color: #ffffff;
}
.tutoriel .tutoriel-read a, .tutoriel .tutoriel-read a:visited {
-moz-box-shadow:inset 0px 1px 0px 0px #f5978e;
-webkit-box-shadow:inset 0px 1px 0px 0px #f5978e;
box-shadow:inset 0px 1px 0px 0px #f5978e;
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f24537), color-stop(1, #c62d1f));
background:-moz-linear-gradient(top, #f24537 5%, #c62d1f 100%);
background:-webkit-linear-gradient(top, #f24537 5%, #c62d1f 100%);
background:-o-linear-gradient(top, #f24537 5%, #c62d1f 100%);
background:-ms-linear-gradient(top, #f24537 5%, #c62d1f 100%);
background:linear-gradient(to bottom, #f24537 5%, #c62d1f 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f24537', endColorstr='#c62d1f',GradientType=0);
background-color:#f24537;
-moz-border-radius:6px;
-webkit-border-radius:6px;
border-radius:2px;
border:1px solid #d02718;
padding: 3px 4px 3px 4px;
color:white;
font-family:Arial;
font-size: 12px;
font-weight:bold;
text-decoration:none;
text-shadow:0px 1px 0px #810e05;
}
.tutoriel .tutoriel-read a:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #c62d1f), color-stop(1, #f24537));
background:-moz-linear-gradient(top, #c62d1f 5%, #f24537 100%);
background:-webkit-linear-gradient(top, #c62d1f 5%, #f24537 100%);
background:-o-linear-gradient(top, #c62d1f 5%, #f24537 100%);
background:-ms-linear-gradient(top, #c62d1f 5%, #f24537 100%);
background:linear-gradient(to bottom, #c62d1f 5%, #f24537 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#c62d1f', endColorstr='#f24537',GradientType=0);
background-color:#c62d1f;
color: #ffffff;
}
.tutoriel header {
margin: 0 0 5px;
position: relative;
}
.tutoriel header h2 {
color: #0b4c5f;
font-size: 1.4rem;
padding: 0 30px 0 5px;
}
.tutoriel header .tutoriel-more {
position: absolute;
right: 4px;
top: 2px;
} |