Файловый менеджер - Редактировать - /home/wuectly/www/03cbe/ic_rounded.tar
Назад
ic_rounded_registration.php 0000604 00000002604 15245721306 0012165 0 ustar 00 <?php /** *------------------------------------------------------------------------------ * iCagenda v3 by Jooml!C - Events Management Extension for Joomla! 2.5 / 3.x *------------------------------------------------------------------------------ * @package com_icagenda * @copyright Copyright (c)2012-2015 Cyril Rezé, Jooml!C - All rights reserved * * @license GNU General Public License version 2 or later; see LICENSE.txt * @author Cyril Rezé (Lyr!C) * @link http://www.joomlic.com * * @themepack ic_rounded * @template event_registration * @version 3.5.10 2015-08-05 * @since 2.0 *------------------------------------------------------------------------------ */ // No direct access to this file defined('_JEXEC') or die(); ?> <!-- Event registration --> <?php // Header of Registration page ?> <?php // Show event ?> <div class="ic-reg-event ic-clearfix"> <div class="ic-reg-box"> <?php if ($EVENT_NEXT): ?> <div class="ic-reg-icon ic-float-left"> </div> <?php endif; ?> <div class="ic-reg-content"> <?php // Category ?> <div class="ic-reg-cat"> <?php echo $CATEGORY_TITLE; ?> </div> <?php // Event Title with link to event ?> <div class="ic-reg-event-title"> <a href="<?php echo $EVENT_URL; ?>" title="<?php echo $EVENT_TITLE; ?>"><?php echo $EVENT_TITLE; ?></a> </div> </div> </div> </div> <?php // END Header ?> ic_rounded_event.php 0000604 00000017760 15245721306 0010605 0 ustar 00 <?php /** *------------------------------------------------------------------------------ * iCagenda v3 by Jooml!C - Events Management Extension for Joomla! 2.5 / 3.x *------------------------------------------------------------------------------ * @package com_icagenda * @copyright Copyright (c)2012-2015 Cyril Rezé, Jooml!C - All rights reserved * * @license GNU General Public License version 2 or later; see LICENSE.txt * @author Cyril Rezé (Lyr!C) * @link http://www.joomlic.com * * @themepack ic_rounded * @template event_details * @version 3.5.6 2015-05-19 * @since 1.0 *------------------------------------------------------------------------------ */ // No direct access to this file defined('_JEXEC') or die(); ?> <!-- Event details --> <?php // Event Details Template ?> <?php // Header (Title/Category) of the event ?> <div class="event-header ic-event-header ic-clearfix"> <?php // Title of the event ?> <div class="title-header ic-title-header ic-float-left"> <h1> <?php echo $EVENT_TITLE; ?> </h1> </div> <?php // Feature icons ?> <?php if (!empty($FEATURES_ICONSIZE_EVENT)) : ?> <div class="ic-features-container"> <?php foreach ($FEATURES_ICONS as $icon) : ?> <div class="ic-feature-icon"> <img class="iCtip" src="<?php echo $FEATURES_ICONROOT_EVENT . $icon['icon'] ?>" alt="<?php echo $icon['icon_alt'] ?>" title="<?php echo $SHOW_ICON_TITLE == '1' ? $icon['icon_alt'] : '' ?>"> </div> <?php endforeach ?> </div> <?php endif ?> <?php // Category ?> <div class="title-cat ic-title-cat ic-float-right ic-details-cat" style="color:<?php echo $CATEGORY_COLOR; ?>;"> <?php echo $CATEGORY_TITLE; ?> </div> </div> <?php // Sharing and Registration ?> <div> <?php // AddThis Social Sharing ?> <div class="ic-event-addthis ic-float-left"> <?php echo $EVENT_SHARING; ?> </div> <?php // Registration button ?> <div class="ic-event-registration"> <?php echo $EVENT_REGISTRATION; ?> </div> </div> <div style="clear:both"></div> <?php // Event Informations Display ?> <div class="icinfo ic-info"> <?php // Show Image of the event ?> <div class="image ic-image"> <?php if ($EVENT_IMAGE): ?> <?php echo $IMAGE_LARGE_HTML; ?> <?php endif; ?> </div> <?php // Details of the event ?> <div class="details ic-details"> <?php // Next Date ('next' 'today' or 'last date' if no next date) ?> <strong><?php echo $EVENT_VIEW_DATE_TEXT; ?>:</strong> <?php echo $EVENT_VIEW_DATE; ?> <?php // Location (different display, depending on the fields filled) ?> <p> <?php // Venue name ?> <?php if ($EVENT_VENUE): ?> <strong><?php echo JTEXT::_('COM_ICAGENDA_EVENT_PLACE'); ?>:</strong> <?php echo $EVENT_VENUE;?> <?php endif; ?> <?php // If Venue Name exists and city set (Google Maps). Displays Country if set. ?> <?php if (($EVENT_VENUE) AND ($EVENT_CITY)): ?> <span> | </span> <strong><?php echo JTEXT::_('COM_ICAGENDA_EVENT_CITY'); ?>:</strong> <?php echo $EVENT_CITY;?><?php if ($EVENT_COUNTRY): ?>, <?php echo $EVENT_COUNTRY;?><?php endif; ?> <?php endif; ?> <?php // If Venue Name doesn't exist and city set (Google Maps). Displays Country if set. ?> <?php if ((!$EVENT_VENUE) AND ($EVENT_CITY)): ?> <strong><?php echo JTEXT::_('COM_ICAGENDA_EVENT_CITY'); ?>:</strong> <?php echo $EVENT_CITY;?><?php if ($EVENT_COUNTRY): ?>, <?php echo $EVENT_COUNTRY;?><?php endif; ?> <?php endif; ?> </p> </div> <div style="clear:both"></div> <?php if ($EVENT_DESC || $EVENT_INFOS): ?> <?php // description text ?> <?php if ($EVENT_DESC): ?> <div id="ic-detail-desc" class="ic-detail-desc"> <div class="ic-short-description"> <?php echo $EVENT_SHORTDESC; ?> </div> <div class="ic-full-description"> <?php echo $EVENT_DESCRIPTION; ?> </div> <?php endif; ?> <?php if (!$EVENT_DESC && $EVENT_INFOS): ?> <div> <?php endif; ?> <p> </p> <?php // Information ?> <?php if ($EVENT_INFOS || $CUSTOM_FIELDS): ?> <div class="ic-info-box"> <?php // Title Box Information ?> <div class="ic-info-box-header"> <label><?php echo JTEXT::_('COM_ICAGENDA_EVENT_INFOS'); ?></label> </div> <?php // Information Details ?> <div class="ic-info-box-content ic-divTable ic-align-left ic-clearfix"> <?php // file attached ?> <?php if ($EVENT_ATTACHEMENTS): ?> <div class="ic-info-box-file"> <label><?php echo JTEXT::_('COM_ICAGENDA_EVENT_FILE'); ?></label> <div class="ic-download"><?php echo $EVENT_ATTACHEMENTS_TAG; ?></div> </div> <?php endif; ?> <?php // Nb of seats available ?> <?php if ($SEATS_AVAILABLE): ?> <div class="ic-divRow"> <div class="ic-divCell ic-label"><?php echo JTEXT::_('COM_ICAGENDA_REGISTRATION_PLACES_LEFT'); ?></div> <div class="ic-divCell ic-value"><?php echo $SEATS_AVAILABLE; ?></div> </div> <?php endif; ?> <?php // Max. Nb of seats ?> <?php if ($MAX_NB_OF_SEATS): ?> <div class="ic-divRow"> <div class="ic-divCell ic-label"><?php echo JTEXT::_('COM_ICAGENDA_REGISTRATION_NUMBER_PLACES'); ?></div> <div class="ic-divCell ic-value"><?php echo $MAX_NB_OF_SEATS; ?></div> </div> <?php endif; ?> <?php // Phone Number ?> <?php if ($EVENT_PHONE): ?> <div class="ic-divRow"> <div class="ic-divCell ic-label"><?php echo JTEXT::_('COM_ICAGENDA_EVENT_PHONE'); ?></div> <div class="ic-divCell ic-value"><?php echo $EVENT_PHONE; ?></div> </div> <?php endif; ?> <?php // Email ?> <?php if ($EVENT_EMAIL): ?> <div class="ic-divRow"> <div class="ic-divCell ic-label"><?php echo JTEXT::_('COM_ICAGENDA_EVENT_MAIL'); ?></div> <div class="ic-divCell ic-value"><?php echo $EVENT_EMAIL_CLOAKING; ?></div> </div> <?php endif; ?> <?php // Website ?> <?php if ($EVENT_WEBSITE): ?> <div class="ic-divRow"> <div class="ic-divCell ic-label"><?php echo JTEXT::_('COM_ICAGENDA_EVENT_WEBSITE'); ?></div> <div class="ic-divCell ic-value"><?php echo $EVENT_WEBSITE_LINK; ?></div> </div> <?php endif; ?> <?php // Custom Fields ?> <?php if ($CUSTOM_FIELDS): ?> <?php foreach ($CUSTOM_FIELDS AS $FIELD): ?> <?php if ($FIELD->title && $FIELD->value) : ?> <div class="ic-divRow"> <div class="ic-divCell ic-label"><?php echo $FIELD->title; ?></div> <div class="ic-divCell ic-value"><?php echo $FIELD->value; ?></div> </div> <?php endif; ?> <?php endforeach; ?> <?php endif; ?> <?php // Address ?> <?php if ($EVENT_ADDRESS): ?> <div class="ic-divRow"> <div class="ic-divCell ic-label"><?php echo JTEXT::_('COM_ICAGENDA_EVENT_ADDRESS'); ?></div> <div class="ic-divCell ic-value"><?php echo $EVENT_ADDRESS; ?></div> </div> <?php endif; ?> </div> </div><?php // end div.details ?> <?php endif; ?> </div> <div style="clear:both"></div> <?php endif; ?> </div> <div style="clear:both"></div> <?php // Google Maps ?> <?php if ($GOOGLEMAPS_COORDINATES): ?> <p> </p> <div id="detail-map"> <h3><?php echo JTEXT::_('COM_ICAGENDA_EVENT_MAP'); ?></h3><br /> <div id="icagenda_map"> <?php echo $EVENT_MAP; ?> </div> </div> <div style="clear:both"></div> <?php endif; ?> <?php // List of all dates (multi-dates and/or period from to) ?> <?php if ($EVENT_SINGLE_DATES OR $EVENT_PERIOD): ?> <p> </p> <div id="detail-date-list"> <h3 class="alldates"><?php echo JTEXT::_('COM_ICAGENDA_EVENT_DATES'); ?></h3><br /> <div class="datesList"> <?php echo $EVENT_PERIOD; ?> <?php echo $EVENT_SINGLE_DATES; ?> </div> </div> <div style="clear:both"></div> <?php endif; ?> <?php // List of Participants ?> <?php if ($PARTICIPANTS_DISPLAY == 1 && $EVENT_PARTICIPANTS) : ?> <p> </p> <div class="ic-participants ic-rounded-10"> <h3><?php echo $PARTICIPANTS_HEADER; ?></h3> <?php echo $EVENT_PARTICIPANTS; ?> </div> <div style="clear:both"></div> <?php endif; ?> css/ic_rounded_component_medium.css 0000604 00000000640 15245721306 0013604 0 ustar 00 /* * COM_ICAGENDA * Medium devices (usually a laptop computer) * 'Medium Screen Threshold' < SCREEN WIDTH < ('Large Screen Threshold' - 1) * Default : 769 < SCREEN WIDTH < 1200 */ /* Style Information */ .ic-info-box { text-align: center; width: auto; } .ic-info-box .ic-info-box-header { width: 86%; } .ic-info-box .ic-info-box-content { width: 64%; } .ic-info-box .ic-info-box-file { width: 100px; } css/ic_rounded_module.css 0000604 00000023400 15245721306 0011526 0 ustar 00 /* * MOD_ICCALENDAR * iCagenda by JoomliC * Theme Pack Official * iC Rounded Theme - module calendar * * @name ic_rounded * @author Lyr!C (JoomliC) * @version 3.5.9 2015-07-31 * @since 1.0 */ /* Clear Float div */ .ic-clearfix { *zoom: 1; } .ic-clearfix:before, .ic-clearfix:after { display: table; content: ""; line-height: 0; } .ic-clearfix:after { clear: both; } /* * CALENDAR STYLES */ /* General Calendar */ .ic_rounded.iccalendar { display: block; margin: auto; padding: 3px; border: 3px solid #ddd; border-radius: 10px; min-width: 150px; max-width: 350px; } /* General Table */ .ic_rounded.iccalendar .ic-table table { padding: 1%; margin: 0; border: 0; border-collapse: collapse; } .ic_rounded.iccalendar .ic-table thead { font-size: 10px; font-weight: 500; } .ic_rounded.iccalendar .ic-table th { padding: 0; margin: 0; text-align: center; border: 0; } .ic_rounded.iccalendar .ic-table tr { padding: 0; margin: 0; border: 0; } /* * DAYS STYLES */ /* General */ .ic_rounded.iccalendar .ic-table td { padding: 3px; margin: 0; border: 0; } .ic_rounded.iccalendar .ic-table td div { text-align: center; font-size: 10px; border-radius: 3px; line-height: 20px; border: none; width: auto; } /* Styles for days (today or else) */ .ic_rounded.iccalendar div.style_Today { border: 1px; border-color: #777; line-height: 18px; border-style: solid; font-size: 12px; font-weight: bold; text-shadow: 0px 0px 10px #777; box-shadow: 0px 0px 5px #999; } .ic_rounded.iccalendar div.style_Day { border: none; } /* In case of no event */ .ic_rounded.iccalendar .no-event { } /* In case of event */ .ic_rounded.iccalendar .icevent a { display: block; text-align: center; height: 100%; color: #fff; text-decoration: none; } /* Dark background */ .ic-dark { color: #fff !important; } /* Bright background */ .ic-bright { color: #111 !important; } .ic_rounded.iccalendar .icevent a .ic-bright { display: block; text-align: center; height: 100%; color: #111; text-decoration: none; } /* In case of multi-event day */ .ic_rounded.iccalendar .icmulti a { background: url(../images/plus.png) top right no-repeat; display: block; text-align: center; height: 100%; color: #fff; text-decoration: none; border-radius: 3px; } /* In case of multi-event day (bright background) */ .ic_rounded.iccalendar .icmulti a .bright { background: url(../images/plus.png) top right no-repeat; display: block; text-align: center; height: 100%; color: #111; text-decoration: none; border-radius: 3px; } /* Loading... */ .ic_rounded.iccalendar .icloading_box { display: block; height: 172px; font-size: 10px; } .ic_rounded.iccalendar .icloading_img { display: block; width: 100%; height: 172px; background: url(../images/ic_load.gif) 50% 50% no-repeat; } /* * SCRIPT FUNCTION (Dates with event) */ /* General */ .ic_rounded .icevent, .ic_rounded .icmulti {} /* Text (Don't modify it!) */ .ic_rounded .icevent .spanEv, .ic_rounded .icmulti .spanEv { display: none !important; /* !important to prevent issue with stupid site templates... */ } /* Date (Don't modify it!) */ .ic_rounded .icevent .date, .ic_rounded .icmulti .date { display: none !important; /* !important to prevent issue with stupid site templates... */ } /* Link */ .ic_rounded .icevent a, .ic_rounded .icmulti a { cursor: pointer; } /* * NAVIGATOR */ /* Arrows General */ .ic_rounded .icagendabtn { font-family: arial; } /* Navigator General */ .ic_rounded .icnav { font-size: 10px; padding: 0px; margin: 0px; min-height: 24px; } /* Arrows General */ .ic_rounded .icnav .backicY, .ic_rounded .icnav .backic, .ic_rounded .icnav .nextic, .ic_rounded .icnav .nexticY { display: block; text-decoration: none; color: #555555; } /* Arrows Back Month and Year (Left) */ .ic_rounded .icnav .backic, .ic_rounded .icnav .backicY { float: left } /* Arrows Next Month and Year (Right) */ .ic_rounded .icnav .nextic, .ic_rounded .icnav .nexticY { float: right } /* Arrows Back and Next - Month */ .ic_rounded .icnav .backic, .ic_rounded .icnav .nextic { background: none; font-size: 12px; width: auto; cursor: pointer; } /* Arrows Back and Next - Year */ .ic_rounded .icnav .backicY, .ic_rounded .icnav .nexticY { background: none; font-size: 12px; width: auto; cursor: pointer; } /* Arrows General Button Style */ .ic_rounded .icnav .backic, .ic_rounded .icnav .nextic, .ic_rounded .icnav .backicY, .ic_rounded .icnav .nexticY { border: 1px solid #ccc; border-radius: 3px; line-height: 12px; margin: 0; padding: 2px 0; text-align: center; vertical-align: middle; width: 12%; } .ic_rounded .icnav .backic, .ic_rounded .icnav .backicY { margin-right: 3px; } .ic_rounded .icnav .nextic, .ic_rounded .icnav .nexticY { margin-left: 3px; } /* Arrows General Hover */ .ic_rounded .icnav .backicY:hover, .ic_rounded .icnav .backic:hover, .ic_rounded .icnav .nextic:hover, .ic_rounded .icnav .nexticY:hover { display: block; text-decoration: none; border: 1px solid #999999; color: #333333; } /* Navigator Title (month and year) */ .ic_rounded .icnav .titleic { font-size: 12px; text-align: center; width: auto; } /* * INFO TIP */ /* General */ #ictip { color: #333333; font-family: arial; text-align: left; background: #f3f3f3; border: 5px solid #ccc; margin: 4px 10px; padding: 15px; width: auto; min-width: 320px; border-radius: 10px; z-index: 10000; -webkit-box-shadow: 2px 2px 4px #999; -moz-box-shadow: 2px 2px 4px #999; box-shadow: 2px 2px 4px #999; max-height: 100%; overflow-y: auto; } #ictip .ictip-event { display: block; float: left; width: 100%; padding: 15px 0; border-top: 1px solid #eee; } #ictip span { margin: 10px; font-size: 0.8em; } #ictip a { display: block; font-size: 1.2em; text-decoration: none; background: none; } /* Date Header */ #ictip .ictip-date { } #ictip span.ictip-date-lbl { font-variant: small-caps; } #ictip span.ictip-date-format { font-size: 1em; } /* Close "X" */ #ictip a.close { position: absolute; display: block; width: auto; top: 15px; right: 15px; color: red; text-decoration: none !important; } #ictip a.close:hover { background: none !important; color: black; cursor: pointer; } /* Event Div */ #ictip div.linkTo { color: #333; background: none; text-decoration: none; transition: all 0.5s; -moz-transition: all 0.5s; -webkit-transition: all 0.5s; -o-transition: all 0.5s; } #ictip div.linkTo:hover { color: #111; background: rgba(0,0,0,0.1); background-color: rgba(0,0,0,0.1); border-radius: 5px; } /* Contener of the image */ #ictip span.img { display: block; width: 100px; float: left; text-align: center; padding: 5px; border-radius: 3px; box-sizing: content-box; } /* Image Thumb */ #ictip span.img img { max-width: 100px; border: 0px solid #ccc; border-radius: 3px; opacity: 1 !important; /* Added due to override of some site templates (Shape5 vertex, ...) */ } /* no-image */ #ictip div.noimg { color: #FFFFFF; font-size: 10px; text-align: center; padding: 5px; } #ictip .bright { color: #111111 !important; } /* Event Title */ #ictip .ictip-event-title { display: block; min-width: 200px; font-weight: bold; margin-top: 10px; padding: 5px; } /* Event Info */ #ictip .ictip-info { display: block; min-width: 200px; font-size: 12px; padding: 0 8px 2px 8px; } #ictip .ictip-time { font-size: 14px; padding: 0 8px; } #ictip .ictip-location { font-size: 12px; padding: 0 8px 3px 8px; } #ictip .ictip-desc { font-size: 12px; color: #555; line-height: 14px; } /* Contener of the description */ #ictip span.bloc { display: block; width: 300px; float: left; margin: 3px; } /* Registration Infos */ #ictip div.ic-reg-buttons { text-align: center; padding: 7px 1px; } #ictip span.iCreg { display: inline-block; font-size: 11px; margin: 0 3px; padding: 1px 5px; text-align: center; -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; border-radius: 5px; box-shadow: 0px 0px 1px #333; /* cursor: pointer; */ } #ictip span.iCreg.available, #ictip span.iCreg.closed { color: black; background: white; } #ictip span.iCreg.ticketsleft { color: #fff; text-shadow: 0 -1px 0 rgba(0,0,0,0.25); background-color: #5bb75b; background-image: -moz-linear-gradient(top,#62c462,#51a351); background-image: -webkit-gradient(linear,0 0,0 100%,from(#62c462),to(#51a351)); background-image: -webkit-linear-gradient(top,#62c462,#51a351); background-image: -o-linear-gradient(top,#62c462,#51a351); background-image: linear-gradient(to bottom,#62c462,#51a351); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0); border-color: #51a351 #51a351 #387038; *background-color: #51a351; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } #ictip span.iCreg.registered { color: #fff; text-shadow: 0 -1px 0 rgba(0,0,0,0.25); background-color: #1d6cb0; background-image: -moz-linear-gradient(top,#2384d3,#15497c); background-image: -webkit-gradient(linear,0 0,0 100%,from(#2384d3),to(#15497c)); background-image: -webkit-linear-gradient(top,#2384d3,#15497c); background-image: -o-linear-gradient(top,#2384d3,#15497c); background-image: linear-gradient(to bottom,#2384d3,#15497c); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff2384d3', endColorstr='#ff15497c', GradientType=0); border-color: #15497c #15497c #0a223b; border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25); *background-color: #15497c; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); } /* End function clear <div> */ #ictip .clr {clear:both; display:block;} /* Features */ #ictip .ic-features-container { margin: 2px; } #ictip .ic-feature-icon { float: right; margin: 0px 0.5px; } /* Messages Info */ .ic-msg-no-event { font-size: 0.8em; text-align: center; } css/ic_rounded_component-rtl.css 0000604 00000004347 15245721306 0013053 0 ustar 00 /* * COM_ICAGENDA * iCagenda by JoomliC * Theme Pack Official * iC Rounded Theme - component * * @name ic_rounded - RTL Styles * @author Lyr!C (JoomliC) * @version 3.4.0 2014-12-01 * @since 3.4.0 */ /* * Common Styles */ /* Align styles */ .ic-align-left { text-align: right; } .ic-align-right { text-align: left; } /* Float styles */ .ic-float-left { float: right; } .ic-float-right { float: left; } /* Table styles */ .ic-divCell { float: right; /* fix for buggy browsers */ } /* Feature Icons */ /* Event Detail */ .event-header > .ic-features-container { float: left; margin-right: auto; margin-left: -5px; } .ic-feature-icon { float: left; } /* Buttons (print, Add to Cal, ...) */ .ic-buttons { float: left; } .ic-icon { margin-left: auto; margin-right: 7px; } div.ic-tip-link { text-align: right; } div.ic-tip-link img { margin-right: auto; margin-left: 5px; } /* * List of Events */ /* Box Date */ .ic-box-date { float: right; } /* Box Content */ .ic-content { float: right; } /* * Event Details */ /* Back button */ .ic-back { text-align: right; } /* Description */ .ic-detail-desc { text-align: right; } /* Content Box */ .ic-info-box-content { text-align: right; } /* File attachment */ .ic-info-box-file { float: left; } /* List of Participants */ #icagenda .panel h3.pane-toggler a { background: #f5f5f5 url(../images/pluslist.png) 1% 50% no-repeat; } #icagenda .panel h3.pane-toggler-down a { background: #f5f5f5 url(../images/minuslist.png) 1% 50% no-repeat; } #icagenda .pane-slider { margin-right: -1px; } #icagenda .list_table { float: right; } /* * Form */ /* Label */ .ic-control-label { float: right; } /* Radio Buttons */ .btn-group > .btn:first-child, .radio.btn-group > label:first-of-type { border-radius: 4px 0 0 4px !important; } .btn-group > .btn:last-child { border-radius: 0 4px 4px 0 !important; } /* Google Maps */ .icmap-label { float: right !important; text-align: right !important; } .icmap-input { text-align: right; } #geo_label { float: right !important; } /* * STYLES for classes not presents in Theme Pack php files, but in iCagenda core php files */ /* Header - List of Categories */ #icagenda .cat_header_title { float: right; margin: 3px 0 -2px 10px; } css/ic_rounded_module_xsmall.css 0000604 00000000336 15245721306 0013111 0 ustar 00 /* * MOD_ICCALENDAR * Extra small devices (usually a mobile phone) * 0 < SCREEN WIDTH < ('Small Screen Threshold' - 1) * Default : 0 < SCREEN WIDTH < 480 */ /* Close "X" */ #ictip a.close { padding-right:15px; } css/index.html 0000604 00000000054 15245721306 0007331 0 ustar 00 <html><body bgcolor="#FFFFFF"></body></html>