Le bandeau

Duo du mois

Aylin & Aëlynn

Rp du mois

Aylin & Aëlynn

Le Deal du moment : -40%
Tefal Ingenio Emotion – Batterie de cuisine 10 ...
Voir le deal
59.99 €


Le bandeau

Frary
 ✯ Sex on the beach
Frary
Messages : 4
Date d'inscription : 29/04/2018

CSS :

Code:
/*********************************** DEBUT INFOBULLES DU BANDO ***********************************/

/*Bloc qui contient l'image et l'infobulle*/
.transition_nu {position: relative; width: 50px; height: 50px; padding: 0px;}

/*Bloc de l'infobulle*/
.nu_transition{background: #F5E6D3; border: 0px solid #F8A998; color: #756657; width: 0px; height: 0px; overflow: hidden; position: absolute; left:50px; top: 0px; z-index: 999; padding: 0px; text-align: center; border-radius: 10px; -webkit-transition: all 1s ease-in; transition: all 1s ease-in;}

/*Apparition de l'infobulle au survol*/
.transition_nu:hover .nu_transition{height: 80px; width: 200px; padding: 10px; border-width: 1px;}

/*Image*/
.transition_nu img {position: relative; z-index: 990; width: 50px; height: 50px; left: 0px; bottom: 0px; -webkit-transition: all 1s linear; transition: all 1s linear;}

/*Effet sur l'image au survol*/
.transition_nu:hover img { -webkit-transition: rotate(-360deg); transform: rotate(-360deg); }

/*********************************** FIN INFOBULLES DU DEBUT INFOBULLES DU BANDO ***********************************/

TEMPLATE OVERALL HEADER

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="{S_CONTENT_DIRECTION}" id="min-width" lang="{L_LANG_HTML}" xml:lang="{L_LANG_HTML}" {NAMESPACE_FB_LIKE} {NAMESPACE_FB} {NAMESPACE_BBCODE}>
<head><link href="https://fonts.googleapis.com/css?family=VT323" rel="stylesheet"><link href="https://fonts.googleapis.com/css?family=Karla|Teko" rel="stylesheet">
  <link href="https://fonts.googleapis.com/css?family=Alegreya+Sans+SC|Kelly+Slab|Six+Caps" rel="stylesheet">
    <link href="https://fonts.googleapis.com/css?family=IM+Fell+English+SC" rel="stylesheet">
    <title>{SITENAME_TITLE}{PAGE_TITLE}</title>
    <meta http-equiv="content-type" content="text/html; charset={S_CONTENT_ENCODING}" />
    <meta http-equiv="content-script-type" content="text/javascript" />
    <meta http-equiv="content-style-type" content="text/css" />
    <!-- BEGIN switch_compat_meta -->
    <meta http-equiv="X-UA-Compatible" content="IE={switch_compat_meta.VERSION}" />
    <!-- END switch_compat_meta -->
    <!-- BEGIN switch_canonical_url -->
    <link rel="canonical" href="{switch_canonical_url.CANONICAL_URL}" />
    <!-- END switch_canonical_url -->
    {META_FAVICO}
    {META}
    {META_FB_LIKE}
    <meta name="title" content="{SITENAME_TITLE}{PAGE_TITLE}" />
    {T_HEAD_STYLESHEET}
    {CSS}
    <link rel="search" type="application/opensearchdescription+xml" href="/improvedsearch.xml" title="{SITENAME}" />
    <link rel="search" type="application/opensearchdescription+xml" href="{URL_BOARD_DIRECTORY}/search/improvedsearch.xml" title="{SEARCH_FORUMS}" />
    <script src="{JQUERY_PATH}" type="text/javascript"></script>
    <!-- BEGIN switch_recent_jquery -->
    <script src="{JS_DIR}jquery1.9/jquery-migrate-1.4.1.js" type="text/javascript"></script>
    <script src="{JQUERY_DIR}browser/v1.0/jquery.browser.min.js" type="text/javascript"></script>
    <script src="{JQUERY_DIR}support/jquery.support.js" type="text/javascript"></script>
    <!-- END switch_recent_jquery -->
    <script src="{JS_DIR}{L_LANG}.js" type="text/javascript"></script> 
    {RICH_SNIPPET_GOOGLE}

    <!-- BEGIN switch_fb_login -->
    <script src="https://connect.facebook.net/{switch_fb_login.FB_LOCAL}/all.js" type="text/javascript"></script>
    <script src="{switch_fb_login.JS_FB_LOGIN}" type="text/javascript"></script>
    <!-- END switch_fb_login -->

    <!-- BEGIN switch_ticker -->
    <link type="text/css" rel="stylesheet" href="{JQUERY_DIR}ticker/ticker.css" />
    <script src="{JQUERY_DIR}/ticker/ticker.js" type="text/javascript"></script>
    <!-- END switch_ticker -->

    <!-- BEGIN switch_ticker_new -->
    <script src="{JQUERY_DIR}jcarousel/jquery.jcarousel.js" type="text/javascript"></script>
    <script type="text/javascript">//<![CDATA[
        /* Definir le sens de direction en fonction du panneau admin */
        var tickerDirParam = "{switch_ticker.DIRECTION}";
        var slid_vert = false;
        var auto_dir = 'next';
        var h_perso = parseInt({switch_ticker.HEIGHT});

        switch( tickerDirParam ) {
            case 'top' :
                slid_vert = true;
                break;
            case 'left':
                break;
            case 'bottom':
                slid_vert = true;
                auto_dir = 'prev';
                break;
            case 'right':
                auto_dir = 'prev';
                break;
            default:
                slid_vert = true;
        }

        $(document).ready(function() {
            var w_cont = $('#fa_ticker_container').width();

            if (w_cont > 0) {
                $('#fa_ticker_container').width(w_cont);

                /* Affichage de la liste */
                $('#fa_ticker_content').css('display','block');

                /* Calcul des dimensions du conteneur et des elements */
                var width_max = $('ul#fa_ticker_content').width();
                var width_item = Math.floor(width_max / {switch_ticker.SIZE});
                var height_max = h_perso;

                /* Calcul de la hauteur maximale du conteneur en fonction des elements et de la hauteur personnalisee dans l'admin */
                $('ul#fa_ticker_content li').each( function () {
                    if ($(this).height() > height_max) {
                        height_max = $(this).height();
                    }
                } );

                /* Redimensionnement des elements et des images trop larges */
                $('ul#fa_ticker_content li').width(width_item).height(height_max).find('img').each(function () {
                    if ($(this).width() > width_item) {
                        var ratio      = $(this).width() / width_item;
                        var new_height = Math.round($(this).height() / ratio);
                        $(this).height(new_height).width(width_item);
                    }
                });

                /* Redimensionnement et centrage du conteneur en mode vertical */
                if (slid_vert) {
                    $('ul#fa_ticker_content').width(width_item).height(height_max).css('marginLeft','auto').css('marginRight','auto');
                }

                /* Initialisation du caroussel */
                $('#fa_ticker_content').jcarousel({
                    vertical: slid_vert,
                    wrap: 'circular',
                    auto: {switch_ticker.STOP_TIME},
                    auto_direction: auto_dir,
                    scroll: 1,
                    size: {switch_ticker.SIZE},
                    height_max: height_max,
                    animation: {switch_ticker.SPEED}
                });
            } else {
                $('ul#fa_ticker_content li:not(:first)').css('display','none');
                $('ul#fa_ticker_content li:first').css('list-style','none').css('text-align','center');
            }
        });
    //]]>
    </script>
    <!-- END switch_ticker_new -->

    <script type="text/javascript">//<![CDATA[
    $(document).ready(function(){
        <!-- BEGIN switch_enable_pm_popup -->
        pm = window.open('{U_PRIVATEMSGS_POPUP}', '_faprivmsg', 'HEIGHT=225,resizable=yes,WIDTH=400');
        if(pm != null) { pm.focus(); }
        <!-- END switch_enable_pm_popup -->
        <!-- BEGIN switch_report_popup -->
        report = window.open('{switch_report_popup.U_REPORT_POPUP}', '_phpbbreport', 'HEIGHT={switch_report_popup.S_HEIGHT},resizable=yes,scrollbars=no,WIDTH={switch_report_popup.S_WIDTH}');
        if(report != null) { report.focus(); }
        <!-- END switch_report_popup -->
        <!-- BEGIN switch_ticker -->
        $(document).ready(function() {             
            Ticker.start({
                height : {switch_ticker.HEIGHT},
                spacing : {switch_ticker.SPACING},
                speed : {switch_ticker.SPEED},
                direction : '{switch_ticker.DIRECTION}',
                pause : {switch_ticker.STOP_TIME}
            });
        });
        <!-- END switch_ticker -->
    });

    <!-- BEGIN switch_login_popup -->
        var logInPopUpLeft, logInPopUpTop, logInPopUpWidth = {LOGIN_POPUP_WIDTH}, logInPopUpHeight = {LOGIN_POPUP_HEIGHT}, logInBackgroundResize = true, logInBackgroundClass = false;
    <!-- END switch_login_popup -->

    <!-- BEGIN switch_login_popup -->
    $(document).ready( function() {
        $(window).resize(function() {
            var windowWidth = document.documentElement.clientWidth;
            var popupWidth = $("#login_popup").width();
            var mypopup = $("#login_popup");

            $("#login_popup").css({
            "left": windowWidth/2 - popupWidth/2
                });
        });
    });
    <!-- END switch_login_popup -->
    //]]>
    </script>
    {GREETING_POPUP}
    <!-- BEGIN switch_ticker_new -->
    <style>
    .jcarousel-skin-tango .jcarousel-item {
        text-align:center;
        width: 10px;
    }

    .jcarousel-skin-tango .jcarousel-item-horizontal {
        margin-right: {switch_ticker.SPACING}px;
    }

    .jcarousel-skin-tango .jcarousel-item-vertical {
        margin-bottom: {switch_ticker.SPACING}px;
    }
    </style>
    <!-- END switch_ticker_new -->
    {HOSTING_JS}

    <!-- BEGIN google_analytics_code -->
    <script type="text/javascript">
        //<![CDATA[
        (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
        (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
        m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
    })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

    ga('create', '{G_ANALYTICS_ID}', 'auto');
    ga('send', 'pageview');
    ga('set', 'anonymizeIp', true);

    <!-- BEGIN google_analytics_code_bis -->
    ga('create', '{G_ANALYTICS_ID_BIS}', 'auto', 'bis');
    ga('bis.send', 'pageview');
    ga('bis.set', 'anonymizeIp', true);
    <!-- END google_analytics_code_bis -->
    //]]>
    </script>
    <!-- END google_analytics_code -->

</head>
<body background="{T_BODY_BACKGROUND}" bgcolor="{T_BODY_BGCOLOR}" text="{T_BODY_TEXT}" link="{T_BODY_LINK}" vlink="{T_BODY_VLINK}">
    <!-- BEGIN hitskin_preview -->
    <div id="hitskin_preview" style="display: block;">
        <h1><img src="https://2img.net/i/fa/hitskin/hitskin_logo.png" alt="" /> <em>Hit</em>skin.com</h1>
        <div class="content">
            <p>
                {hitskin_preview.L_THEME_SITE_PREVIEW}
                <br />
                <span>{hitskin_preview.U_INSTALL_THEME}<a href="https://{hitskin_preview.U_RETURN_THEME}">{hitskin_preview.L_RETURN_THEME}</a></span>
            </p>
        </div>
    </div>
    <!-- END hitskin_preview -->

    <!-- BEGIN switch_login_popup -->
    <div id="login_popup" style="z-index: 10000 !important;">
        <table class="forumline" width="{LOGIN_POPUP_WIDTH}" height="{LOGIN_POPUP_HEIGHT}" border="0" cellspacing="1" cellpadding="0">
            <tr height="25">
                <td class="catLeft">
                    <span class="genmed module-title">{SITENAME}</span>
                </td>
            </tr>
            <tr height="{LOGIN_POPUP_MSG_HEIGHT}">
                <td class="row1" align="left" valign="top">
                    <div id="login_popup_buttons">
                        <form action="{S_LOGIN_ACTION}" method="get">
                            <input type="submit" class="mainoption" value="{L_LOGIN}" />
                            <input type="button" class="mainoption" value="{L_REGISTER}" onclick="parent.location='{U_REGISTER}';" />
                            <input id="login_popup_close" type="button" class="button" value="{L_DONT_DISPLAY_AGAIN}" />
                        </form>
                    </div>
                    <span class="genmed">{LOGIN_POPUP_MSG}</span>
                </td>
            </tr>
        </table>
    </div>
    <!-- END switch_login_popup -->

    <a name="top"></a>
    {JAVASCRIPT}

    <table class="bodylinewidth" width="{T_BODY_TABLE_WIDTH}" cellspacing="0" cellpadding="10" border="0" align="center">
        <tr>
            <td class="bodyline">
                <table width="100%" cellspacing="0" cellpadding="0" border="0">
                    <tr>
                        <!-- BEGIN switch_logo_left -->
                        <td><a href="{U_INDEX}"><img src="{LOGO}" id="i_logo" border="0" alt="{L_INDEX}" vspace="1" /></a></td>
                        <!-- END switch_logo_left -->
                        <td align="center" width="100%" valign="middle">
                            <!-- BEGIN switch_logo_center -->
                            <a href="{U_INDEX}"><img src="{LOGO}" id="i_logo" border="0" alt="{L_INDEX}" vspace="1" /></a>
                            <br />
                            <!-- END switch_logo_center -->
                            <div class="maintitle">{MAIN_SITENAME}</div>
                            <br />
                            <span class="gen">{SITE_DESCRIPTION}<br />&nbsp; </span>
                        </td>
                        <!-- BEGIN switch_logo_right -->
                        <td><a href="{U_INDEX}"><img src="{LOGO}" id="i_logo" border="0" alt="{L_INDEX}" vspace="1" /></a></td>
                        <!-- END switch_logo_right -->
                    </tr>
                </table>

                <table cellspacing="0" cellpadding="0" border="0" align="{MENU_POSITION}">
                    <tr>
                        <td align="{MENU_POSITION}"{MENU_NOWRAP}>{GENERATED_NAV_BAR}</td>
                    </tr>
                </table>

                <div style="clear: both;"></div>

                <!-- BEGIN switch_ticker_new -->
                <div id="fa_ticker_block" style="margin-top:4px;margin-bottom:4px;">
                    <table width="100%" border="0" cellspacing="0" cellpadding="0" class="forumline">
                        <tr>
                            <td align="left" class="row1">
                                <div id="fa_ticker_container">
                                    <ul id="fa_ticker_content" class="jcarousel-skin-tango" style="display:none;">
                                        <!-- BEGIN ticker_row -->
                                        <li>{switch_ticker.ticker_row.ELEMENT}</li>
                                        <!-- END ticker_row -->
                                    </ul>
                                </div>
                            </td>
                        </tr>
                    </table>
                </div>
                <!-- END switch_ticker_new -->
  <table style="margin-top: 10px;">
<TR>
                      <TD style="width: 255px; height: 120px; overflow: auto; background-color: #ECCCA7; font-size: 10px; color: #575757; padding: 5px; text-align: center;"> <span style="background-color: #F8A998; font-weight: bolder; padding: px; border-radius: 200px 200px 200px 200px;-moz-border-radius: 200px 200px 200px 200px;-webkit-border-radius: 200px 200px 200px 200px;">Ils sont attendus !</span> <br/><br/>       
<span class="transition_nu"><img style="width: 40px; height: 40px;" alt="" src="https://media1.giphy.com/media/1HygaoEch1Q2I/source.gif" /><span class="nu_transition"><h3>Prénom Nom</h3>Feat Toby Regbo <br /><span> <a href="https://deadforlove.forumactif.com/t58-m-libre-toby-regbo-comme-envoute"> Le découvrir</a>  ♛  <a href="https://deadforlove.forumactif.com/u3">Le profil de la réatrice du scénario</a></span> </span></span>        <span class="transition_nu"><img style="width: 40px; height: 40px;" alt="" src="https://media.giphy.com/media/3eOHIuFsx9MQw/giphy.gif" /> <span class="nu_transition"><h3>            Soline Roys</h3>Feat Caitlin Stacey <br /><span> <a href="https://deadforlove.forumactif.com/t57-f-libre-caitlin-stasey-meilleure-amie-protegee#99"> La découvrir</a>  ♛  <a href="https://deadforlove.forumactif.com/u3">Le profil de la créatrice du scénario</a></span> </span></span>
<span class="transition_nu"><img style="width: 40px; height: 40px;" alt="" src="https://i.gifer.com/Gb66.gif" /> <span class="nu_transition"><h3>Malone Green</h3>Feat Luke Evans <br /><span> <a href="https://deadforlove.forumactif.com/t131-grand-frere-et-soeur-jumelle-green-f-et-m-libre"> Le découvrir</a>  ♛  <a href="https://deadforlove.forumactif.com/u12">Le profil de la créatrice du scénario</a></span> </span></span>
<span class="transition_nu"><img style="width: 40px; height: 40px;" alt="" src="https://thumbs.gfycat.com/BrokenDelightfulCentipede-size_restricted.gif" /> <span class="nu_transition"><h3>Melia Green</h3>Feat Camila Mendes <br /><span> <a href="https://deadforlove.forumactif.com/t131-grand-frere-et-soeur-jumelle-green-f-et-m-libre"> La découvrir</a>  ♛  <a href="https://deadforlove.forumactif.com/u12">Le profil de la créatrice du scénario</a></span> </span></span> <br/> <br/>
<span class="transition_nu"><img style="width: 40px; height: 40px;" alt="" src="https://media0.giphy.com/media/vvTMPZZUQ3oYM/source.gif" /><span class="nu_transition"><h3>Loren March</h3>Feat Julianne Moore<br /><span> <a href="https://media0.giphy.com/media/vvTMPZZUQ3oYM/source.gif"> La découvrir</a>  ♛  <a href="https://deadforlove.forumactif.com/u4">Le profil de la créatrice du scénario</a></span> </span></span>        <span class="transition_nu"><img style="width: 40px; height: 40px;" alt="" src="https://66.media.tumblr.com/29bb2fc5ce4d4ed03b446a5aa937cf1b/tumblr_inline_o9s2xemU5X1rifr4k_250.gif" /> <span class="nu_transition"><h3>            Prénom Nom</h3>Feat Torrance Coombs <br /><span> <a href="https://deadforlove.forumactif.com/t127-m-libre-torrance-coombs-l-x-qui-revient-d-entre-les-morts#749"> Le découvrir</a>  ♛  <a href="https://deadforlove.forumactif.com/u3">Le profil de la créatrice du scénario</a></span> </span></span>
<span class="transition_nu"><img style="width: 40px; height: 40px;" alt="" src="https://66.media.tumblr.com/e0b09f840b3d9c22b1b88046ccf91c41/tumblr_inline_ogw5cgLPfU1rifr4k_250.gif" /> <span class="nu_transition"><h3>            Athenais De Leroy</h3>Feat Natalie Portman <br /><span> <a href="https://deadforlove.forumactif.com/t204-f-libre-natalie-portman-mentor-friend"> La découvrir</a>  ♛  <a href="https://deadforlove.forumactif.com/u40">Le profil de la créatrice du scénario</a></span> </span></span>
<span class="transition_nu"><img style="width: 40px; height: 40px;" alt="" src="https://data.whicdn.com/images/225465250/original.gif" /> <span class="nu_transition"><h3>            A. Stuart</h3>Feat Matthew Daddario <br /><span> <a href="https://deadforlove.forumactif.com/t27-f-m-libre-priyanka-chopra-et-matt-daddario-la-soeur-et-le-frere-stuart"> Le découvrir</a>  ♛  <a href="https://deadforlove.forumactif.com/u3">Le profil de la créatrice du scénario</a></span> </span></span><br/>
</TD>
<TD style="width: 255px; height: 120px; overflow: auto;background-color: #ECCCA7; font-size: 10px; color: #575757; padding: 5px; text-align: center;"> <span style="background-color: #F8A998; font-weight: bolder; padding: px; border-radius: 200px 200px 200px 200px;-moz-border-radius: 200px 200px 200px 200px;-webkit-border-radius: 200px 200px 200px 200px; ">notre univers</span> <br/> <br/>
<div style="width: 255px; height: 120px; background: #ECCCA7; border:3px solid #ECCCA7; outline: 5px solid #ECCCA7; padding: 8px; font-size: 12px; font-family: calibri; text-align: justify; margin: 0 auto; overflow: auto;"><center> <img src="https://pa1.narvii.com/6519/6f3f4dcbdaac5014d24831300936db42824dbba3_hq.gif" style="height:80px; "></center><br>Tout commence 19e siècle, plus précisément dès 1828 par cinq familles Les Winston, les Kingston, les Powell, les Coleman et les Lahote. Comme dans chaque ville, ce sont certaines familles qui battissent des villes, on les appelle les familles fondatrices. Cependant, s'il y a bien une chose que Tulsa n'a pas. En effet, ce ne sont pas cinq familles par hasard, nous avons une famille de vampire, de sorcier, de chasseur, de loup et de simple humain. Bien entendu, on se demande comment cela a-t-il été possible, comment la combinaison de plusieurs différences a-t-elle pu être établie pour une ville paisible et sereine ? La raison est simple, un traité. Chaque famille s'engagea à respecter les autres et à chasser en dehors de la ville.<a href="https://deadforlove.forumactif.com/f79-l-univers-de-tulsa">En savoir plus ?</a>. </div>
</TD>
<TD style="width: 255px; height: 120px; overflow: auto;background-color: #ECCCA7; font-size: 10px; color: #575757; padding: 5px; text-align: center;"> <span style="background-color: #F8A998; font-weight: bolder; padding: px; border-radius: 200px 200px 200px 200px;-moz-border-radius: 200px 200px 200px 200px;-webkit-border-radius: 200px 200px 200px 200px; ">Membres du mois</span> <br/> <br/>
<span class="transition_nu"><img style="width: 120px; height: 40px;" alt="" src="https://zupimages.net/up/20/23/52tt.gif" /></span> <span class="transition_nu"><img style="width: 120px; height: 40px;" alt="" src="https://zupimages.net/up/20/23/yk4a.gif" /></span> <br/><br/>

On remercie Marwenne March et Carla Doll pour leur présence et leur activité. N’hésitez pas à leur demander un lien sur leur fiche : <a href="https://deadforlove.forumactif.com/t128-les-liens-de-marwenne-march">ICI</a> et <a href="https://deadforlove.forumactif.com/t181-les-liens-de-carla-doll">LA</a>.
</TD>
  </TR> </table>
                <!-- BEGIN switch_ticker -->
                <div id="fa_ticker_block" style="margin-top:4px;margin-bottom:4px;">
                    <table width="100%" border="0" cellspacing="0" cellpadding="0" class="forumline">
                        <tr>
                            <td align="left" class="row1">
                                <div id="fa_ticker_container">
                                    <div id="fa_ticker" style="height:{switch_ticker.HEIGHT}px;">
                                        <div class="fa_ticker_content">
                                            <!-- BEGIN ticker_row -->
                                            <div>{switch_ticker.ticker_row.ELEMENT}</div>
                                            <!-- END ticker_row -->
                                        </div>
                                    </div>
                                </div>
                            </td>
                        </tr>
                    </table>
                </div>
                <!-- END switch_ticker -->

                <div id="page-body">
                    <div id="{ID_CONTENT_CONTAINER}"{CLASS_CONTENT_CONTAINER}>
                        <table cellpadding="0" cellspacing="0" width="100%" class="three-col">
                            <tbody>
                                <tr>
                                    <td valign="top" width="{C1SIZE}">
                                        <div id="{ID_LEFT}">
                                            <!-- BEGIN giefmod_index1 -->
                                            {giefmod_index1.MODVAR}
                                                <!-- BEGIN saut -->
                                                <div style="height:{SPACE_ROW}px"></div>
                                                <!-- END saut -->
                                            <!-- END giefmod_index1 -->
                                        </div>
                                    </td>
                                    <td valign="top" width="100%">
<!-- BEGIN html_validation -->
                                    </td>
                                </tr>
                            </tbody>
                        </table>
                    </div>
                </div>
            </td>
        </tr>
    </table>
</body>
</html>
<!-- END html_validation -->

Aller en hautAller en bas