@ -0,0 +1,118 @@ |
||||
/* |
||||
* Swiper - Mobile Touch Slider CSS |
||||
* http://www.idangero.us/sliders/swiper |
||||
* |
||||
* Vladimir Kharlampidi, The iDangero.us |
||||
* http://www.idangero.us/ |
||||
* |
||||
* Copyright 2012-2013, Vladimir Kharlampidi |
||||
* The iDangero.us |
||||
* http://www.idangero.us |
||||
* |
||||
* Licensed under GPL & MIT |
||||
* |
||||
*/ |
||||
|
||||
/* =============================================================== |
||||
Basic Swiper Styles |
||||
================================================================*/ |
||||
.swiper-container { |
||||
margin:0 auto; |
||||
position:relative; |
||||
overflow:hidden; |
||||
-webkit-backface-visibility:hidden; |
||||
-moz-backface-visibility:hidden; |
||||
-ms-backface-visibility:hidden; |
||||
-o-backface-visibility:hidden; |
||||
backface-visibility:hidden; |
||||
/* Fix of Webkit flickering */ |
||||
z-index:1; |
||||
} |
||||
.swiper-wrapper { |
||||
position:relative; |
||||
width:100%; |
||||
-webkit-transition-property:-webkit-transform, left, top; |
||||
-webkit-transition-duration:0s; |
||||
-webkit-transform:translate3d(0px,0,0); |
||||
-webkit-transition-timing-function:ease; |
||||
|
||||
-moz-transition-property:-moz-transform, left, top; |
||||
-moz-transition-duration:0s; |
||||
-moz-transform:translate3d(0px,0,0); |
||||
-moz-transition-timing-function:ease; |
||||
|
||||
-o-transition-property:-o-transform, left, top; |
||||
-o-transition-duration:0s; |
||||
-o-transform:translate3d(0px,0,0); |
||||
-o-transition-timing-function:ease; |
||||
-o-transform:translate(0px,0px); |
||||
|
||||
-ms-transition-property:-ms-transform, left, top; |
||||
-ms-transition-duration:0s; |
||||
-ms-transform:translate3d(0px,0,0); |
||||
-ms-transition-timing-function:ease; |
||||
|
||||
transition-property:transform, left, top; |
||||
transition-duration:0s; |
||||
transform:translate3d(0px,0,0); |
||||
transition-timing-function:ease; |
||||
} |
||||
.swiper-free-mode > .swiper-wrapper { |
||||
-webkit-transition-timing-function: ease-out; |
||||
-moz-transition-timing-function: ease-out; |
||||
-ms-transition-timing-function: ease-out; |
||||
-o-transition-timing-function: ease-out; |
||||
transition-timing-function: ease-out; |
||||
margin: 0 auto; |
||||
} |
||||
.swiper-slide { |
||||
float: left; |
||||
} |
||||
|
||||
/* IE10 Windows Phone 8 Fixes */ |
||||
.swiper-wp8-horizontal { |
||||
-ms-touch-action: pan-y; |
||||
} |
||||
.swiper-wp8-vertical { |
||||
-ms-touch-action: pan-x; |
||||
} |
||||
|
||||
/* =============================================================== |
||||
Your custom styles, here you need to specify container's and slide's |
||||
sizes, pagination, etc. |
||||
================================================================*/ |
||||
.swiper-container { |
||||
/* Specify Swiper's Size: */ |
||||
|
||||
/*width:200px; |
||||
height: 100px;*/ |
||||
} |
||||
.swiper-slide { |
||||
/* Specify Slides's Size: */ |
||||
|
||||
/*width: 100%; |
||||
height: 100%;*/ |
||||
} |
||||
.swiper-slide-active { |
||||
/* Specific active slide styling: */ |
||||
|
||||
} |
||||
.swiper-slide-visible { |
||||
/* Specific visible slide styling: */ |
||||
|
||||
} |
||||
/* =============================================================== |
||||
Pagination Styles |
||||
================================================================*/ |
||||
.swiper-pagination-switch { |
||||
/* Stylize pagination button: */ |
||||
|
||||
} |
||||
.swiper-active-switch { |
||||
/* Specific active button style: */ |
||||
|
||||
} |
||||
.swiper-visible-switch { |
||||
/* Specific visible button style: */ |
||||
|
||||
} |
||||
@ -0,0 +1,16 @@ |
||||
.swiper-scrollbar { |
||||
border-radius: 10px; |
||||
position: relative; |
||||
-ms-touch-action: none; |
||||
background: rgba(0,0,0,0.1) |
||||
} |
||||
.swiper-scrollbar-drag { |
||||
height: 100%; |
||||
width: 100%; |
||||
position: relative; |
||||
background: rgba(0,0,0,0.5); |
||||
border-radius: 10px; |
||||
} |
||||
.swiper-scrollbar-cursor-drag { |
||||
cursor: move; |
||||
} |
||||
@ -0,0 +1,163 @@ |
||||
/*! jQuery UI - v1.10.3 - 2013-11-24 |
||||
* http://jqueryui.com |
||||
* Includes: jquery.ui.core.css, jquery.ui.autocomplete.css, jquery.ui.menu.css |
||||
* Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */ |
||||
|
||||
/* Layout helpers |
||||
----------------------------------*/ |
||||
.ui-helper-hidden { |
||||
display: none; |
||||
} |
||||
.ui-helper-hidden-accessible { |
||||
border: 0; |
||||
clip: rect(0 0 0 0); |
||||
height: 1px; |
||||
margin: -1px; |
||||
overflow: hidden; |
||||
padding: 0; |
||||
position: absolute; |
||||
width: 1px; |
||||
} |
||||
.ui-helper-reset { |
||||
margin: 0; |
||||
padding: 0; |
||||
border: 0; |
||||
outline: 0; |
||||
line-height: 1.3; |
||||
text-decoration: none; |
||||
font-size: 100%; |
||||
list-style: none; |
||||
} |
||||
.ui-helper-clearfix:before, |
||||
.ui-helper-clearfix:after { |
||||
content: ""; |
||||
display: table; |
||||
border-collapse: collapse; |
||||
} |
||||
.ui-helper-clearfix:after { |
||||
clear: both; |
||||
} |
||||
.ui-helper-clearfix { |
||||
min-height: 0; /* support: IE7 */ |
||||
} |
||||
.ui-helper-zfix { |
||||
width: 100%; |
||||
height: 100%; |
||||
top: 0; |
||||
left: 0; |
||||
position: absolute; |
||||
opacity: 0; |
||||
filter:Alpha(Opacity=0); |
||||
} |
||||
|
||||
.ui-front { |
||||
z-index: 100; |
||||
} |
||||
|
||||
|
||||
/* Interaction Cues |
||||
----------------------------------*/ |
||||
.ui-state-disabled { |
||||
cursor: default !important; |
||||
} |
||||
|
||||
|
||||
/* Icons |
||||
----------------------------------*/ |
||||
|
||||
/* states and images */ |
||||
.ui-icon { |
||||
display: block; |
||||
text-indent: -99999px; |
||||
overflow: hidden; |
||||
background-repeat: no-repeat; |
||||
} |
||||
|
||||
|
||||
/* Misc visuals |
||||
----------------------------------*/ |
||||
|
||||
/* Overlays */ |
||||
.ui-widget-overlay { |
||||
position: fixed; |
||||
top: 0; |
||||
left: 0; |
||||
width: 100%; |
||||
height: 100%; |
||||
} |
||||
.ui-autocomplete { |
||||
position: absolute; |
||||
top: 0; |
||||
left: 0; |
||||
cursor: default; |
||||
} |
||||
|
||||
.ui-menu { |
||||
list-style: none; |
||||
padding: 2px; |
||||
margin: 0; |
||||
display: block; |
||||
outline: none; |
||||
} |
||||
.ui-menu .ui-menu { |
||||
margin-top: -3px; |
||||
position: absolute; |
||||
} |
||||
.ui-menu .ui-menu-item { |
||||
margin: 0; |
||||
padding: 0; |
||||
width: 100%; |
||||
/* support: IE10, see #8844 */ |
||||
list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7); |
||||
} |
||||
.ui-menu .ui-menu-divider { |
||||
margin: 5px -2px 5px -2px; |
||||
height: 0; |
||||
font-size: 0; |
||||
line-height: 0; |
||||
border-width: 1px 0 0 0; |
||||
} |
||||
.ui-menu .ui-menu-item a { |
||||
text-decoration: none; |
||||
display: block; |
||||
padding: 2px .4em; |
||||
line-height: 1.5; |
||||
min-height: 0; /* support: IE7 */ |
||||
font-weight: normal; |
||||
} |
||||
.ui-menu .ui-menu-item a.ui-state-focus, |
||||
.ui-menu .ui-menu-item a.ui-state-active { |
||||
font-weight: normal; |
||||
margin: -1px; |
||||
} |
||||
|
||||
.ui-menu .ui-state-disabled { |
||||
font-weight: normal; |
||||
/*margin: .4em 0 .2em; |
||||
line-height: 1.5;*/ |
||||
} |
||||
.ui-menu .ui-state-disabled a { |
||||
cursor: default; |
||||
} |
||||
|
||||
/* icon support */ |
||||
/*.ui-menu-icons { |
||||
position: relative; |
||||
} |
||||
.ui-menu-icons .ui-menu-item a { |
||||
position: relative; |
||||
padding-left: 2em; |
||||
}*/ |
||||
|
||||
/* left-aligned */ |
||||
/*.ui-menu .ui-icon { |
||||
position: absolute; |
||||
top: .2em; |
||||
left: .2em; |
||||
}*/ |
||||
|
||||
/* right-aligned */ |
||||
/*.ui-menu .ui-menu-icon { |
||||
position: static; |
||||
float: right; |
||||
}*/ |
||||
@ -0,0 +1,274 @@ |
||||
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */ |
||||
.fancybox-wrap, |
||||
.fancybox-skin, |
||||
.fancybox-outer, |
||||
.fancybox-inner, |
||||
.fancybox-image, |
||||
.fancybox-wrap iframe, |
||||
.fancybox-wrap object, |
||||
.fancybox-nav, |
||||
.fancybox-nav span, |
||||
.fancybox-tmp |
||||
{ |
||||
padding: 0; |
||||
margin: 0; |
||||
border: 0; |
||||
outline: none; |
||||
vertical-align: top; |
||||
} |
||||
|
||||
.fancybox-wrap { |
||||
position: absolute; |
||||
top: 0; |
||||
left: 0; |
||||
z-index: 8020; |
||||
} |
||||
|
||||
.fancybox-skin { |
||||
position: relative; |
||||
background: #f9f9f9; |
||||
color: #444; |
||||
text-shadow: none; |
||||
-webkit-border-radius: 4px; |
||||
-moz-border-radius: 4px; |
||||
border-radius: 4px; |
||||
} |
||||
|
||||
.fancybox-opened { |
||||
z-index: 8030; |
||||
} |
||||
|
||||
.fancybox-opened .fancybox-skin { |
||||
-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); |
||||
-moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); |
||||
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); |
||||
} |
||||
|
||||
.fancybox-outer, .fancybox-inner { |
||||
position: relative; |
||||
} |
||||
|
||||
.fancybox-inner { |
||||
overflow: hidden; |
||||
} |
||||
|
||||
.fancybox-type-iframe .fancybox-inner { |
||||
-webkit-overflow-scrolling: touch; |
||||
} |
||||
|
||||
.fancybox-error { |
||||
color: #444; |
||||
font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif; |
||||
margin: 0; |
||||
padding: 15px; |
||||
white-space: nowrap; |
||||
} |
||||
|
||||
.fancybox-image, .fancybox-iframe { |
||||
display: block; |
||||
width: 100%; |
||||
height: 100%; |
||||
} |
||||
|
||||
.fancybox-image { |
||||
max-width: 100%; |
||||
max-height: 100%; |
||||
} |
||||
|
||||
#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span { |
||||
background-image: url('../img/fancybox/fancybox_sprite.png'); |
||||
} |
||||
|
||||
#fancybox-loading { |
||||
position: fixed; |
||||
top: 50%; |
||||
left: 50%; |
||||
margin-top: -22px; |
||||
margin-left: -22px; |
||||
background-position: 0 -108px; |
||||
opacity: 0.8; |
||||
cursor: pointer; |
||||
z-index: 8060; |
||||
} |
||||
|
||||
#fancybox-loading div { |
||||
width: 44px; |
||||
height: 44px; |
||||
background: url('../img/fancybox/fancybox_loading.gif') center center no-repeat; |
||||
} |
||||
|
||||
.fancybox-close { |
||||
position: absolute; |
||||
top: -18px; |
||||
right: -18px; |
||||
width: 36px; |
||||
height: 36px; |
||||
cursor: pointer; |
||||
z-index: 8040; |
||||
} |
||||
|
||||
.fancybox-nav { |
||||
position: absolute; |
||||
top: 0; |
||||
width: 40%; |
||||
height: 100%; |
||||
cursor: pointer; |
||||
text-decoration: none; |
||||
background: transparent url('../img/fancybox/blank.gif'); /* helps IE */ |
||||
-webkit-tap-highlight-color: rgba(0,0,0,0); |
||||
z-index: 8040; |
||||
} |
||||
|
||||
.fancybox-prev { |
||||
left: 0; |
||||
} |
||||
|
||||
.fancybox-next { |
||||
right: 0; |
||||
} |
||||
|
||||
.fancybox-nav span { |
||||
position: absolute; |
||||
top: 50%; |
||||
width: 36px; |
||||
height: 34px; |
||||
margin-top: -18px; |
||||
cursor: pointer; |
||||
z-index: 8040; |
||||
visibility: hidden; |
||||
} |
||||
|
||||
.fancybox-prev span { |
||||
left: 10px; |
||||
background-position: 0 -36px; |
||||
} |
||||
|
||||
.fancybox-next span { |
||||
right: 10px; |
||||
background-position: 0 -72px; |
||||
} |
||||
|
||||
.fancybox-nav:hover span { |
||||
visibility: visible; |
||||
} |
||||
|
||||
.fancybox-tmp { |
||||
position: absolute; |
||||
top: -99999px; |
||||
left: -99999px; |
||||
visibility: hidden; |
||||
max-width: 99999px; |
||||
max-height: 99999px; |
||||
overflow: visible !important; |
||||
} |
||||
|
||||
/* Overlay helper */ |
||||
|
||||
.fancybox-lock { |
||||
overflow: hidden !important; |
||||
width: auto; |
||||
} |
||||
|
||||
.fancybox-lock body { |
||||
overflow: hidden !important; |
||||
} |
||||
|
||||
.fancybox-lock-test { |
||||
overflow-y: hidden !important; |
||||
} |
||||
|
||||
.fancybox-overlay { |
||||
position: absolute; |
||||
top: 0; |
||||
left: 0; |
||||
overflow: hidden; |
||||
display: none; |
||||
z-index: 8010; |
||||
background: url('../img/fancybox/fancybox_overlay.png'); |
||||
} |
||||
|
||||
.fancybox-overlay-fixed { |
||||
position: fixed; |
||||
bottom: 0; |
||||
right: 0; |
||||
} |
||||
|
||||
.fancybox-lock .fancybox-overlay { |
||||
overflow: auto; |
||||
overflow-y: scroll; |
||||
} |
||||
|
||||
/* Title helper */ |
||||
|
||||
.fancybox-title { |
||||
visibility: hidden; |
||||
font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif; |
||||
position: relative; |
||||
text-shadow: none; |
||||
z-index: 8050; |
||||
} |
||||
|
||||
.fancybox-opened .fancybox-title { |
||||
visibility: visible; |
||||
} |
||||
|
||||
.fancybox-title-float-wrap { |
||||
position: absolute; |
||||
bottom: 0; |
||||
right: 50%; |
||||
margin-bottom: -35px; |
||||
z-index: 8050; |
||||
text-align: center; |
||||
} |
||||
|
||||
.fancybox-title-float-wrap .child { |
||||
display: inline-block; |
||||
margin-right: -100%; |
||||
padding: 2px 20px; |
||||
background: transparent; /* Fallback for web browsers that doesn't support RGBa */ |
||||
background: rgba(0, 0, 0, 0.8); |
||||
-webkit-border-radius: 15px; |
||||
-moz-border-radius: 15px; |
||||
border-radius: 15px; |
||||
text-shadow: 0 1px 2px #222; |
||||
color: #FFF; |
||||
font-weight: bold; |
||||
line-height: 24px; |
||||
white-space: nowrap; |
||||
} |
||||
|
||||
.fancybox-title-outside-wrap { |
||||
position: relative; |
||||
margin-top: 10px; |
||||
color: #fff; |
||||
} |
||||
|
||||
.fancybox-title-inside-wrap { |
||||
padding-top: 10px; |
||||
} |
||||
|
||||
.fancybox-title-over-wrap { |
||||
position: absolute; |
||||
bottom: 0; |
||||
left: 0; |
||||
color: #fff; |
||||
padding: 10px; |
||||
background: #000; |
||||
background: rgba(0, 0, 0, .8); |
||||
} |
||||
|
||||
/*Retina graphics!*/ |
||||
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), |
||||
only screen and (min--moz-device-pixel-ratio: 1.5), |
||||
only screen and (min-device-pixel-ratio: 1.5){ |
||||
|
||||
#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span { |
||||
background-image: url('../img/fancybox/fancybox_sprite@2x.png'); |
||||
background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/ |
||||
} |
||||
|
||||
#fancybox-loading div { |
||||
background-image: url('../img/fancybox/fancybox_loading@2x.gif'); |
||||
background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/ |
||||
} |
||||
} |
||||
@ -0,0 +1,527 @@ |
||||
/*! normalize.css v1.1.2 | MIT License | git.io/normalize */ |
||||
|
||||
/* ========================================================================== |
||||
HTML5 display definitions |
||||
========================================================================== */ |
||||
|
||||
/** |
||||
* Correct `block` display not defined in IE 6/7/8/9 and Firefox 3. |
||||
*/ |
||||
|
||||
article, |
||||
aside, |
||||
details, |
||||
figcaption, |
||||
figure, |
||||
footer, |
||||
header, |
||||
hgroup, |
||||
main, |
||||
nav, |
||||
section, |
||||
summary { |
||||
display: block; |
||||
} |
||||
|
||||
/** |
||||
* Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3. |
||||
*/ |
||||
|
||||
audio, |
||||
canvas, |
||||
video { |
||||
display: inline-block; |
||||
*display: inline; |
||||
*zoom: 1; |
||||
} |
||||
|
||||
/** |
||||
* Prevent modern browsers from displaying `audio` without controls. |
||||
* Remove excess height in iOS 5 devices. |
||||
*/ |
||||
|
||||
audio:not([controls]) { |
||||
display: none; |
||||
height: 0; |
||||
} |
||||
|
||||
/** |
||||
* Address styling not present in IE 7/8/9, Firefox 3, and Safari 4. |
||||
* Known issue: no IE 6 support. |
||||
*/ |
||||
|
||||
[hidden] { |
||||
display: none; |
||||
} |
||||
|
||||
/* ========================================================================== |
||||
Base |
||||
========================================================================== */ |
||||
|
||||
/** |
||||
* 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using |
||||
* `em` units. |
||||
* 2. Prevent iOS text size adjust after orientation change, without disabling |
||||
* user zoom. |
||||
*/ |
||||
|
||||
html { |
||||
font-size: 100%; /* 1 */ |
||||
-ms-text-size-adjust: 100%; /* 2 */ |
||||
-webkit-text-size-adjust: 100%; /* 2 */ |
||||
} |
||||
|
||||
/** |
||||
* Address `font-family` inconsistency between `textarea` and other form |
||||
* elements. |
||||
*/ |
||||
|
||||
html, |
||||
button, |
||||
input, |
||||
select, |
||||
textarea { |
||||
font-family: sans-serif; |
||||
} |
||||
|
||||
/** |
||||
* Address margins handled incorrectly in IE 6/7. |
||||
*/ |
||||
|
||||
body { |
||||
margin: 0; |
||||
} |
||||
|
||||
/* ========================================================================== |
||||
Links |
||||
========================================================================== */ |
||||
|
||||
/** |
||||
* Address `outline` inconsistency between Chrome and other browsers. |
||||
*/ |
||||
|
||||
a:focus { |
||||
outline: thin dotted; |
||||
} |
||||
|
||||
/** |
||||
* Improve readability when focused and also mouse hovered in all browsers. |
||||
*/ |
||||
|
||||
a:active, |
||||
a:hover { |
||||
outline: 0; |
||||
} |
||||
|
||||
/* ========================================================================== |
||||
Typography |
||||
========================================================================== */ |
||||
|
||||
/** |
||||
* Address font sizes and margins set differently in IE 6/7. |
||||
* Address font sizes within `section` and `article` in Firefox 4+, Safari 5, |
||||
* and Chrome. |
||||
*/ |
||||
|
||||
h1 { |
||||
font-size: 2em; |
||||
margin: 0.67em 0; |
||||
} |
||||
|
||||
h2 { |
||||
font-size: 1.5em; |
||||
margin: 0.83em 0; |
||||
} |
||||
|
||||
h3 { |
||||
font-size: 1.17em; |
||||
margin: 1em 0; |
||||
} |
||||
|
||||
h4 { |
||||
font-size: 1em; |
||||
margin: 1.33em 0; |
||||
} |
||||
|
||||
h5 { |
||||
font-size: 0.83em; |
||||
margin: 1.67em 0; |
||||
} |
||||
|
||||
h6 { |
||||
font-size: 0.67em; |
||||
margin: 2.33em 0; |
||||
} |
||||
|
||||
/** |
||||
* Address styling not present in IE 7/8/9, Safari 5, and Chrome. |
||||
*/ |
||||
|
||||
abbr[title] { |
||||
border-bottom: 1px dotted; |
||||
} |
||||
|
||||
/** |
||||
* Address style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome. |
||||
*/ |
||||
|
||||
b, |
||||
strong { |
||||
font-weight: bold; |
||||
} |
||||
|
||||
blockquote { |
||||
margin: 1em 40px; |
||||
} |
||||
|
||||
/** |
||||
* Address styling not present in Safari 5 and Chrome. |
||||
*/ |
||||
|
||||
dfn { |
||||
font-style: italic; |
||||
} |
||||
|
||||
/** |
||||
* Address differences between Firefox and other browsers. |
||||
* Known issue: no IE 6/7 normalization. |
||||
*/ |
||||
|
||||
hr { |
||||
-moz-box-sizing: content-box; |
||||
box-sizing: content-box; |
||||
height: 0; |
||||
} |
||||
|
||||
/** |
||||
* Address styling not present in IE 6/7/8/9. |
||||
*/ |
||||
|
||||
mark { |
||||
background: #ff0; |
||||
color: #000; |
||||
} |
||||
|
||||
/** |
||||
* Address margins set differently in IE 6/7. |
||||
*/ |
||||
|
||||
p, |
||||
pre { |
||||
margin: 1em 0; |
||||
} |
||||
|
||||
/** |
||||
* Correct font family set oddly in IE 6, Safari 4/5, and Chrome. |
||||
*/ |
||||
|
||||
code, |
||||
kbd, |
||||
pre, |
||||
samp { |
||||
font-family: monospace, serif; |
||||
_font-family: 'courier new', monospace; |
||||
font-size: 1em; |
||||
} |
||||
|
||||
/** |
||||
* Improve readability of pre-formatted text in all browsers. |
||||
*/ |
||||
|
||||
pre { |
||||
white-space: pre; |
||||
white-space: pre-wrap; |
||||
word-wrap: break-word; |
||||
} |
||||
|
||||
/** |
||||
* Address CSS quotes not supported in IE 6/7. |
||||
*/ |
||||
|
||||
q { |
||||
quotes: none; |
||||
} |
||||
|
||||
/** |
||||
* Address `quotes` property not supported in Safari 4. |
||||
*/ |
||||
|
||||
q:before, |
||||
q:after { |
||||
content: ''; |
||||
content: none; |
||||
} |
||||
|
||||
/** |
||||
* Address inconsistent and variable font size in all browsers. |
||||
*/ |
||||
|
||||
small { |
||||
font-size: 80%; |
||||
} |
||||
|
||||
/** |
||||
* Prevent `sub` and `sup` affecting `line-height` in all browsers. |
||||
*/ |
||||
|
||||
sub, |
||||
sup { |
||||
font-size: 75%; |
||||
line-height: 0; |
||||
position: relative; |
||||
vertical-align: baseline; |
||||
} |
||||
|
||||
sup { |
||||
top: -0.5em; |
||||
} |
||||
|
||||
sub { |
||||
bottom: -0.25em; |
||||
} |
||||
|
||||
/* ========================================================================== |
||||
Lists |
||||
========================================================================== */ |
||||
|
||||
/** |
||||
* Address margins set differently in IE 6/7. |
||||
*/ |
||||
|
||||
dl, |
||||
menu, |
||||
ol, |
||||
ul { |
||||
margin: 1em 0; |
||||
} |
||||
|
||||
dd { |
||||
margin: 0 0 0 40px; |
||||
} |
||||
|
||||
/** |
||||
* Address paddings set differently in IE 6/7. |
||||
*/ |
||||
|
||||
menu, |
||||
ol, |
||||
ul { |
||||
padding: 0 0 0 40px; |
||||
} |
||||
|
||||
/** |
||||
* Correct list images handled incorrectly in IE 7. |
||||
*/ |
||||
|
||||
nav ul, |
||||
nav ol { |
||||
list-style: none; |
||||
list-style-image: none; |
||||
} |
||||
|
||||
/* ========================================================================== |
||||
Embedded content |
||||
========================================================================== */ |
||||
|
||||
/** |
||||
* 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3. |
||||
* 2. Improve image quality when scaled in IE 7. |
||||
*/ |
||||
|
||||
img { |
||||
border: 0; /* 1 */ |
||||
-ms-interpolation-mode: bicubic; /* 2 */ |
||||
} |
||||
|
||||
/** |
||||
* Correct overflow displayed oddly in IE 9. |
||||
*/ |
||||
|
||||
svg:not(:root) { |
||||
overflow: hidden; |
||||
} |
||||
|
||||
/* ========================================================================== |
||||
Figures |
||||
========================================================================== */ |
||||
|
||||
/** |
||||
* Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11. |
||||
*/ |
||||
|
||||
figure { |
||||
margin: 0; |
||||
} |
||||
|
||||
/* ========================================================================== |
||||
Forms |
||||
========================================================================== */ |
||||
|
||||
/** |
||||
* Correct margin displayed oddly in IE 6/7. |
||||
*/ |
||||
|
||||
form { |
||||
margin: 0; |
||||
} |
||||
|
||||
/** |
||||
* Define consistent border, margin, and padding. |
||||
*/ |
||||
|
||||
fieldset { |
||||
border: 1px solid #c0c0c0; |
||||
margin: 0 2px; |
||||
padding: 0.35em 0.625em 0.75em; |
||||
} |
||||
|
||||
/** |
||||
* 1. Correct color not being inherited in IE 6/7/8/9. |
||||
* 2. Correct text not wrapping in Firefox 3. |
||||
* 3. Correct alignment displayed oddly in IE 6/7. |
||||
*/ |
||||
|
||||
legend { |
||||
border: 0; /* 1 */ |
||||
padding: 0; |
||||
white-space: normal; /* 2 */ |
||||
*margin-left: -7px; /* 3 */ |
||||
} |
||||
|
||||
/** |
||||
* 1. Correct font size not being inherited in all browsers. |
||||
* 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5, |
||||
* and Chrome. |
||||
* 3. Improve appearance and consistency in all browsers. |
||||
*/ |
||||
|
||||
button, |
||||
input, |
||||
select, |
||||
textarea { |
||||
font-size: 100%; /* 1 */ |
||||
margin: 0; /* 2 */ |
||||
vertical-align: baseline; /* 3 */ |
||||
*vertical-align: middle; /* 3 */ |
||||
} |
||||
|
||||
/** |
||||
* Address Firefox 3+ setting `line-height` on `input` using `!important` in |
||||
* the UA stylesheet. |
||||
*/ |
||||
|
||||
button, |
||||
input { |
||||
line-height: normal; |
||||
} |
||||
|
||||
/** |
||||
* Address inconsistent `text-transform` inheritance for `button` and `select`. |
||||
* All other form control elements do not inherit `text-transform` values. |
||||
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+. |
||||
* Correct `select` style inheritance in Firefox 4+ and Opera. |
||||
*/ |
||||
|
||||
button, |
||||
select { |
||||
text-transform: none; |
||||
} |
||||
|
||||
/** |
||||
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` |
||||
* and `video` controls. |
||||
* 2. Correct inability to style clickable `input` types in iOS. |
||||
* 3. Improve usability and consistency of cursor style between image-type |
||||
* `input` and others. |
||||
* 4. Remove inner spacing in IE 7 without affecting normal text inputs. |
||||
* Known issue: inner spacing remains in IE 6. |
||||
*/ |
||||
|
||||
button, |
||||
html input[type="button"], /* 1 */ |
||||
input[type="reset"], |
||||
input[type="submit"] { |
||||
-webkit-appearance: button; /* 2 */ |
||||
cursor: pointer; /* 3 */ |
||||
*overflow: visible; /* 4 */ |
||||
} |
||||
|
||||
/** |
||||
* Re-set default cursor for disabled elements. |
||||
*/ |
||||
|
||||
button[disabled], |
||||
html input[disabled] { |
||||
cursor: default; |
||||
} |
||||
|
||||
/** |
||||
* 1. Address box sizing set to content-box in IE 8/9. |
||||
* 2. Remove excess padding in IE 8/9. |
||||
* 3. Remove excess padding in IE 7. |
||||
* Known issue: excess padding remains in IE 6. |
||||
*/ |
||||
|
||||
input[type="checkbox"], |
||||
input[type="radio"] { |
||||
box-sizing: border-box; /* 1 */ |
||||
padding: 0; /* 2 */ |
||||
*height: 13px; /* 3 */ |
||||
*width: 13px; /* 3 */ |
||||
} |
||||
|
||||
/** |
||||
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. |
||||
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome |
||||
* (include `-moz` to future-proof). |
||||
*/ |
||||
|
||||
input[type="search"] { |
||||
-webkit-appearance: textfield; /* 1 */ |
||||
-moz-box-sizing: content-box; |
||||
-webkit-box-sizing: content-box; /* 2 */ |
||||
box-sizing: content-box; |
||||
} |
||||
|
||||
/** |
||||
* Remove inner padding and search cancel button in Safari 5 and Chrome |
||||
* on OS X. |
||||
*/ |
||||
|
||||
input[type="search"]::-webkit-search-cancel-button, |
||||
input[type="search"]::-webkit-search-decoration { |
||||
-webkit-appearance: none; |
||||
} |
||||
|
||||
/** |
||||
* Remove inner padding and border in Firefox 3+. |
||||
*/ |
||||
|
||||
button::-moz-focus-inner, |
||||
input::-moz-focus-inner { |
||||
border: 0; |
||||
padding: 0; |
||||
} |
||||
|
||||
/** |
||||
* 1. Remove default vertical scrollbar in IE 6/7/8/9. |
||||
* 2. Improve readability and alignment in all browsers. |
||||
*/ |
||||
|
||||
textarea { |
||||
overflow: auto; /* 1 */ |
||||
vertical-align: top; /* 2 */ |
||||
} |
||||
|
||||
/* ========================================================================== |
||||
Tables |
||||
========================================================================== */ |
||||
|
||||
/** |
||||
* Remove most spacing between table cells. |
||||
*/ |
||||
|
||||
table { |
||||
border-collapse: collapse; |
||||
border-spacing: 0; |
||||
} |
||||
@ -0,0 +1,24 @@ |
||||
.leter-list{ |
||||
list-style: none; |
||||
} |
||||
|
||||
.leter-list li{ |
||||
margin-bottom: 2px; |
||||
margin-left: -10px; |
||||
} |
||||
|
||||
.leter-list li a:hover{ |
||||
text-decoration: none; |
||||
color: #ff6600; |
||||
border-color: transparent; |
||||
} |
||||
|
||||
.leter-list li a { |
||||
display: inline-block; |
||||
font-size: 14px; |
||||
line-height: 17px; |
||||
text-decoration: underline; |
||||
color: #464646; |
||||
padding: 2px 15px 2px 9px; |
||||
border-color: transparent; |
||||
} |
||||
@ -0,0 +1,215 @@ |
||||
|
||||
/* Resizable |
||||
----------------------------------*/ |
||||
.ui-resizable { position: relative;} |
||||
.ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block; } |
||||
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; } |
||||
.ui-resizable-n { cursor: n-resize; height: 9px; width: 9px; top: -5px; left: 50%; margin-left: -4px; background: rgba(255, 255, 255, 0.5);} |
||||
.ui-resizable-s { cursor: s-resize; height: 9px; width: 9px; bottom: -5px; left: 50%; margin-left: -4px; background: rgba(255, 255, 255, 0.5);} |
||||
.ui-resizable-e { cursor: e-resize; width: 9px; right: -5px; top: 50%; margin-top: -4px; height: 9px; background: rgba(255, 255, 255, 0.5);} |
||||
.ui-resizable-w { cursor: w-resize; width: 9px; left: -5px; top: 50%; height: 9px; margin-top: -4px; background: rgba(255, 255, 255, 0.5);} |
||||
.ui-resizable-se { cursor: se-resize; width: 9px; height: 9px; right: -5px; bottom: -5px; background: rgba(255, 255, 255, 0.5);} |
||||
.ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; background: rgba(255, 255, 255, 0.5);} |
||||
.ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; background: rgba(255, 255, 255, 0.5);} |
||||
.ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px; background: rgba(255, 255, 255, 0.5);} |
||||
|
||||
.photoTag-taglist{ |
||||
list-style:none; |
||||
padding: 0; |
||||
} |
||||
.photoTag-taglist li{ |
||||
margin-left: 0; |
||||
display: inline; |
||||
padding: 0; |
||||
} |
||||
.tg-close { |
||||
display: block; |
||||
position: absolute; |
||||
right: 0; |
||||
top: 0; |
||||
width: 32px; |
||||
height: 32px; |
||||
cursor: pointer; |
||||
z-index: 100; |
||||
} |
||||
.tg-close:before { |
||||
content: ''; |
||||
display: block; |
||||
width: 10px; |
||||
height: 10px; |
||||
background: url(../img/sprites.png) -227px -149px no-repeat; |
||||
position: absolute; |
||||
left: 50%; |
||||
top: 50%; |
||||
margin: -5px 0 0 -5px; |
||||
} |
||||
.taghover:before { |
||||
content: ''; |
||||
display: block; |
||||
width: 100%; |
||||
height: 100%; |
||||
position: absolute; |
||||
left: 0; |
||||
top: 0; |
||||
} |
||||
.taghover .tg-close { |
||||
width: 18px; |
||||
height: 18px; |
||||
} |
||||
.taghover .tg-close:before { |
||||
background: url('static/img/x.png') 0 0 no-repeat; |
||||
left: 8px; |
||||
top: 9px; |
||||
} |
||||
|
||||
.taghover .tg-close:hover:before { |
||||
background-position: 0 -32px; |
||||
} |
||||
.tg-close:hover:before { |
||||
background-position: -227px -160px ; |
||||
} |
||||
.photoTag-taglist a.tg-close { |
||||
display: inline; |
||||
margin: 0; |
||||
padding: 0 5px 0 3px; |
||||
text-decoration: none; |
||||
position: relative; |
||||
} |
||||
.photoTag-wrap { |
||||
overflow: hidden; |
||||
} |
||||
.utag-right, .utag-left { |
||||
width: 2000px; |
||||
background: rgba(0, 0, 0, 0.5); |
||||
position: absolute; |
||||
top: 0; |
||||
} |
||||
.utag-left { |
||||
left: -2000px; |
||||
} |
||||
.utag-top, .utag-bot { |
||||
width: 4000px; |
||||
background: rgba(0, 0, 0, 0.5); |
||||
position: absolute; |
||||
height: 2000px; |
||||
left: -2000px; |
||||
} |
||||
.utag-top { |
||||
top: -2000px; |
||||
} |
||||
.taghover { |
||||
width: 100%; |
||||
height: 100%; |
||||
position: absolute; |
||||
top: 0; |
||||
left: 0; |
||||
z-index: 3014; |
||||
background-color: rgba(255, 255, 255, 0.01); |
||||
} |
||||
#expoNewTagForm { |
||||
background-color: #FFFFFF; |
||||
padding: 10px; |
||||
overflow:hidden; |
||||
position: absolute; |
||||
-moz-border-radius: 4px; |
||||
-webkit-border-radius: 4px; |
||||
border-radius: 4px; |
||||
line-height: 100%; |
||||
z-index: 1039; |
||||
} |
||||
#expoNewTagForm button { |
||||
padding: 0 27px; |
||||
margin: 10px 0 0 0; |
||||
} |
||||
.ptListHolder ul { |
||||
position:relative; |
||||
display: block; |
||||
min-height: 24px; |
||||
width: 120px; |
||||
background: #ffffff; |
||||
} |
||||
.ptListHolder ul li { |
||||
padding: 0; |
||||
margin:0; |
||||
border-bottom: 1px solid #DDDDDD; |
||||
} |
||||
.ptListHolder ul li a { |
||||
padding: 10px 5px 10px 5px!important; |
||||
text-align: left; |
||||
display: block!important; |
||||
} |
||||
.photoTag-tag { |
||||
border: 1px solid rgba(255, 255, 255, 0.7); |
||||
background-color: transparent; |
||||
overflow: hidden; |
||||
z-index:1021; |
||||
} |
||||
#photoTag-tag_expo { |
||||
overflow: visible; |
||||
} |
||||
.photoTag-tag .photoTag-delete { |
||||
background:url('/x2.png') no-repeat; |
||||
width:25px; |
||||
height:29px; |
||||
display:inline; |
||||
z-index:3200; |
||||
position:absolute; |
||||
right:-22px; |
||||
cursor:pointer; |
||||
opacity: 0.8; |
||||
} |
||||
#expoNewTagForm input{ |
||||
display: block; |
||||
} |
||||
#expoNewTagForm input[type="text"] { |
||||
padding: 0 5px 0 5px; |
||||
font-size: 14px; |
||||
height: 36px; |
||||
} |
||||
#expoNewTagForm label{ |
||||
width: auto; |
||||
float: left; |
||||
color: #FF6600; |
||||
line-height: 100%; |
||||
text-align: left; |
||||
line-height: 21px; |
||||
} |
||||
#expoNewTagForm .inputSubmit |
||||
{ |
||||
color: #FF6600; |
||||
background-color: #ffffff; |
||||
border: 1px solid #ffffff; |
||||
-moz-border-radius-topleft: 5px; |
||||
-webkit-border-top-left-radius: 5px; |
||||
-moz-border-radius-topright: 5px; |
||||
-webkit-border-top-right-radius: 5px; |
||||
-moz-border-radius-bottomleft: 5px; |
||||
-webkit-border-bottom-left-radius: 5px; |
||||
-moz-border-radius-bottomright: 5px; |
||||
-webkit-border-bottom-right-radius: 5px; |
||||
} |
||||
#expoNewTagForm .inputSubmit { |
||||
float: right; |
||||
margin: 5px 0 0; |
||||
padding: 5px; |
||||
} |
||||
#expoNewTagForm .inputCancel { |
||||
border: 0 none; |
||||
} |
||||
|
||||
.innerTag{ |
||||
float: left; |
||||
background-color: #FF6600; |
||||
padding: 3px; |
||||
height: 14px; |
||||
position: relative; |
||||
line-height: 100%; |
||||
top: -23px; |
||||
left: 0; |
||||
font-size: 12px; |
||||
color: #ffffff; |
||||
-moz-border-radius-topleft: 5px; |
||||
-webkit-border-top-left-radius: 5px; |
||||
-moz-border-radius-topright: 5px; |
||||
-webkit-border-top-right-radius: 5px; |
||||
} |
||||
@ -0,0 +1,85 @@ |
||||
.c-select-box.places .csb-title ul.ui-autocomplete { |
||||
background: none repeat scroll 0 0 #FFFFFF; |
||||
border: 1px solid #CCCCCC; |
||||
margin-left: 0; |
||||
z-index: 1020; |
||||
} |
||||
|
||||
.c-select-box.places .csb-title ul.ui-autocomplete li |
||||
{ |
||||
margin-bottom: 5px; |
||||
} |
||||
.places-list ul li a:before, .topics-list ul li a:before { |
||||
content: ""; |
||||
display: block; |
||||
height: 8px; |
||||
left: -12px; |
||||
position: absolute; |
||||
top: 50%; |
||||
margin-top: -4px; |
||||
width: 8px; |
||||
z-index: 1; |
||||
background: url('../img/sprites.png') no-repeat -83px -16px; |
||||
} |
||||
.places-list > ul > li.active > a:before,.level2.active > a:before, .topics-list > ul > li.active > a:before { |
||||
content: ""; |
||||
display: block; |
||||
height: 8px; |
||||
left: -12px; |
||||
position: absolute; |
||||
top: 3px; |
||||
width: 8px; |
||||
z-index: 1; |
||||
background: url('../img/sprites.png') no-repeat -86px -24px; |
||||
} |
||||
.places-list > ul > li.active > a:before, .topics-list > ul > li.active > a:before{ |
||||
margin-top: 2px; |
||||
} |
||||
.level2.active > a:before{ |
||||
margin-top: 2px; |
||||
} |
||||
|
||||
.c-select-box-wrap .custom-radio-check:before { |
||||
content: ''; |
||||
width: 13px; |
||||
height: 13px; |
||||
display: block; |
||||
position: absolute; |
||||
top: 50%; |
||||
margin-top: -5px; |
||||
left: -16px; |
||||
z-index: 1; |
||||
background: url('../img/sprites.png') no-repeat -345px -135px ; |
||||
} |
||||
.c-select-box-wrap .custom-radio-check.active:before { |
||||
content: ''; |
||||
width: 13px; |
||||
height: 13px; |
||||
display: block; |
||||
position: absolute; |
||||
top: 50%; |
||||
margin-top: -6px; |
||||
left: -17px; |
||||
z-index: 1; |
||||
background: url('../img/sprites.png') no-repeat -46px -16px; |
||||
} |
||||
.ac-custom-message { |
||||
background: none repeat scroll 0 0 #FFFFFF; |
||||
border: 1px solid #CCCCDC; |
||||
border-radius: 5px; |
||||
padding: 5px 10px 5px 25px; |
||||
position: absolute; |
||||
z-index: 1415; |
||||
display: none; |
||||
} |
||||
.ac-custom-message span:before { |
||||
background: url("../img/sprites.png") no-repeat scroll -106px -16px #FFFFFF; |
||||
content: ""; |
||||
display: block; |
||||
height: 10px; |
||||
left: 7px; |
||||
position: absolute; |
||||
top: 19px; |
||||
width: 13px; |
||||
z-index: 1416; |
||||
} |
||||
@ -0,0 +1,640 @@ |
||||
/* ******************************************************* */ |
||||
/* Select2 plugin styles */ |
||||
/* ******************************************************* */ |
||||
|
||||
.select2-container { |
||||
position: relative; |
||||
display: inline-block; |
||||
vertical-align: middle; |
||||
margin: 0; |
||||
word-spacing: normal; |
||||
} |
||||
|
||||
.mf-field .select2-container { |
||||
width: 100%; |
||||
} |
||||
|
||||
.select2-container ul, |
||||
.select2-drop ul { |
||||
margin: 0; |
||||
padding: 0; |
||||
list-style: none; |
||||
} |
||||
|
||||
.select2-container, |
||||
.select2-drop, |
||||
.select2-search, |
||||
.select2-search input { |
||||
-webkit-box-sizing: border-box; |
||||
-moz-box-sizing: border-box; |
||||
box-sizing: border-box; |
||||
} |
||||
|
||||
.select2-container .select2-choice, |
||||
.select2-container .select2-choices { |
||||
position: relative; |
||||
display: block; |
||||
border: 1px solid #bdbdbd; |
||||
background: #fff; |
||||
width: 100%; |
||||
/*padding: 5px 30px 2px 3px;*/ |
||||
padding-right: 30px; |
||||
font-family: 'dindisplay_pro', sans-serif; |
||||
font-size: 15px; |
||||
line-height: 19px; |
||||
text-decoration: none; |
||||
overflow: hidden; |
||||
white-space: nowrap; |
||||
color: #464646; |
||||
-webkit-border-radius: 3px; |
||||
-moz-border-radius: 3px; |
||||
border-radius: 3px; |
||||
-webkit-box-shadow: inset 0 2px 2px -2px #aaa; |
||||
-moz-box-shadow: inset 0 2px 2px -2px #aaa; |
||||
box-shadow: inset 0 2px 2px -2px #aaa; |
||||
-webkit-box-sizing: border-box; |
||||
-moz-box-sizing: border-box; |
||||
box-sizing: border-box; |
||||
|
||||
-webkit-touch-callout: none; |
||||
-webkit-user-select: none; |
||||
-moz-user-select: none; |
||||
-ms-user-select: none; |
||||
user-select: none; |
||||
|
||||
-webkit-transition: none; |
||||
-moz-transition: none; |
||||
-ms-transition: none; |
||||
-o-transition: none; |
||||
transition: none; |
||||
} |
||||
|
||||
.select2-container .select2-choices { |
||||
height: auto; |
||||
min-height: 40px; |
||||
cursor: text; |
||||
} |
||||
|
||||
.select2-container-active .select2-choice, |
||||
.select2-container-active .select2-choices { |
||||
/*border: 2px solid #ff6600;*/ |
||||
outline: none; |
||||
padding-right: 29px; |
||||
-webkit-box-shadow: none; |
||||
-moz-box-shadow: none; |
||||
box-shadow: none; |
||||
border-radius: 4px; |
||||
} |
||||
|
||||
.select2-dropdown-open .select2-choice, |
||||
.select2-dropdown-open .select2-choices { |
||||
border: 2px solid #ff6600; |
||||
border-bottom: 0; |
||||
padding-right: 29px; |
||||
border-bottom: none; |
||||
-webkit-border-radius: 3px 3px 0 0; |
||||
-moz-border-radius: 3px 3px 0 0; |
||||
border-radius: 3px 3px 0 0; |
||||
} |
||||
|
||||
.select2-dropdown-open.select2-drop-above .select2-choice, |
||||
.select2-dropdown-open.select2-drop-above .select2-choices { |
||||
padding: 6px 26px 1px 2px; |
||||
border-bottom: 2px solid #ff6600; |
||||
border-top: none; |
||||
-webkit-border-radius: 0 0 3px 3px; |
||||
-moz-border-radius: 0 0 3px 3px; |
||||
border-radius: 0 0 3px 3px; |
||||
} |
||||
|
||||
.select2-container-multi .select2-choices:after { |
||||
content: " "; |
||||
display: block; |
||||
width: 8px; |
||||
height: 5px; |
||||
overflow: hidden; |
||||
background: url(../img/sprites.png) -86px -27px no-repeat; |
||||
position: absolute; |
||||
right: 12px; |
||||
top: 17px; |
||||
} |
||||
|
||||
.select2-container-multi.select2-container-active .select2-choices:after { |
||||
right: 11px; |
||||
top: 16px; |
||||
} |
||||
|
||||
.select2-dropdown-open.select2-drop-above .select2-choices:after { |
||||
right: 11px; |
||||
top: 18px; |
||||
} |
||||
|
||||
.select2-container-multi.select2-container-disabled .select2-choices { |
||||
background: #fff; |
||||
/*border: 1px solid #bdbdbd;*/ |
||||
cursor: default; |
||||
} |
||||
|
||||
.select2-container.select2-allowclear .select2-choice .select2-chosen { |
||||
margin-right: 30px; |
||||
} |
||||
|
||||
.select2-container .select2-choice > .select2-chosen { |
||||
display: block; |
||||
padding: 7px 0 6px 16px; |
||||
margin-right: 0; |
||||
line-height: 15px; |
||||
overflow: hidden; |
||||
|
||||
white-space: nowrap; |
||||
|
||||
text-overflow: ellipsis; |
||||
float: none; |
||||
width: auto; |
||||
} |
||||
|
||||
.select2-search-choice-close { |
||||
display: block; |
||||
position: absolute; |
||||
right: 0; |
||||
top: 0; |
||||
width: 25px; |
||||
height: 0; |
||||
padding-top: 26px; |
||||
overflow: hidden; |
||||
background: none; |
||||
outline: none; |
||||
} |
||||
|
||||
.select2-container-multi .select2-search-choice-close { |
||||
left: auto; |
||||
} |
||||
|
||||
.select2-search-choice-close:before { |
||||
content: ''; |
||||
display: inline-block; |
||||
width: 8px; |
||||
height: 8px; |
||||
background: url(../img/sprites.png) -134px -16px no-repeat; |
||||
position: absolute; |
||||
left: 50%; |
||||
top: 50%; |
||||
margin: -3px 0 0 -4px; |
||||
} |
||||
|
||||
.select2-container .select2-choice abbr { |
||||
display: none; |
||||
width: 30px; |
||||
height: 38px; |
||||
padding-top: 0; |
||||
position: absolute; |
||||
right: 30px; |
||||
top: 0; |
||||
|
||||
font-size: 1px; |
||||
text-decoration: none; |
||||
|
||||
border: 0; |
||||
background: none; |
||||
cursor: pointer; |
||||
outline: 0; |
||||
} |
||||
|
||||
.select2-container.select2-allowclear .select2-choice abbr { |
||||
display: block; |
||||
} |
||||
|
||||
.select2-container.select2-container-active.select2-allowclear .select2-choice abbr { |
||||
/*height: 36px;*/ |
||||
right: 29px; |
||||
} |
||||
|
||||
.select2-dropdown-open.select2-drop-above.select2-allowclear .select2-choice abbr { |
||||
margin-top: 2px; |
||||
} |
||||
|
||||
.select2-container.select2-allowclear .select2-choice abbr:before { |
||||
background-position: -74px -160px; |
||||
} |
||||
|
||||
.select2-container .select2-choice abbr:hover:before { |
||||
background-position: -134px -16px; |
||||
} |
||||
|
||||
.select2-container .select2-choice .select2-arrow { |
||||
display: block; |
||||
width: 29px; |
||||
height: 100%; |
||||
position: absolute; |
||||
right: 0; |
||||
top: 0; |
||||
|
||||
-webkit-border-radius: 0 3px 3px 0; |
||||
-moz-border-radius: 0 3px 3px 0; |
||||
border-radius: 0 3px 3px 0; |
||||
} |
||||
|
||||
.select2-container.select2-container-active .select2-choice .select2-arrow { |
||||
width: 28px; |
||||
} |
||||
|
||||
.select2-container .select2-choice .select2-arrow b { |
||||
display: block; |
||||
width: 8px; |
||||
height: 5px; |
||||
overflow: hidden; |
||||
background: url(../img/sprites.png) -86px -27px no-repeat; |
||||
position: absolute; |
||||
right: 12px; |
||||
top: 50%; |
||||
margin-top: -2px; |
||||
} |
||||
|
||||
.select2-container.select2-dropdown-open.select2-drop-above .select2-choice .select2-arrow b { |
||||
top: 18px; |
||||
} |
||||
|
||||
.select2-container.select2-container-active .select2-choice .select2-arrow b { |
||||
right: 11px; |
||||
top: 16px; |
||||
} |
||||
|
||||
.select2-drop-mask { |
||||
position: fixed; |
||||
left: 0; |
||||
top: 0; |
||||
z-index: 9998; |
||||
height: auto; |
||||
width: auto; |
||||
min-height: 100%; |
||||
min-width: 100%; |
||||
border: 0; |
||||
margin: 0; |
||||
padding: 0; |
||||
background-color: #fff; |
||||
opacity: 0; |
||||
filter: alpha(opacity=0); |
||||
} |
||||
|
||||
|
||||
.select2-drop { |
||||
position: absolute; |
||||
top: 100%; |
||||
z-index: 9999; |
||||
width: 100%; |
||||
padding: 0 10px 10px; |
||||
background: #fff; |
||||
color: #000; |
||||
border: 2px solid #ff6600; |
||||
border-top: none; |
||||
font-family: 'dindisplay_pro', sans-serif; |
||||
font-size: 15px; |
||||
-webkit-border-radius: 0 0 4px 4px; |
||||
-moz-border-radius: 0 0 4px 4px; |
||||
border-radius: 0 0 4px 4px; |
||||
} |
||||
|
||||
.select2-drop.select2-drop-above { |
||||
padding: 10px 10px 0; |
||||
border-top: 2px solid #ff6600; |
||||
border-bottom: 0; |
||||
border-radius: 4px 4px 0 0; |
||||
} |
||||
|
||||
.select2-drop-active { |
||||
border-color: #ff6600; |
||||
} |
||||
|
||||
.select2-drop-auto-width { |
||||
border-top: 1px solid #aaa; |
||||
width: auto; |
||||
} |
||||
|
||||
.select2-drop-auto-width .select2-search { |
||||
padding-top: 4px; |
||||
} |
||||
|
||||
.select2-drop-active:before { |
||||
content: ''; |
||||
display: block; |
||||
border-top: 1px dotted #cccccc; |
||||
margin: 4px 0 5px; |
||||
} |
||||
|
||||
.select2-drop.select2-drop-above.select2-drop-active:before { |
||||
content: none; |
||||
} |
||||
|
||||
.select2-drop.select2-drop-above.select2-drop-active:after { |
||||
content: ''; |
||||
display: block; |
||||
border-bottom: 1px dotted #cccccc; |
||||
margin: 10px 0 4px; |
||||
} |
||||
|
||||
|
||||
.select2-search { |
||||
display: block; |
||||
width: 100%; |
||||
min-height: 26px; |
||||
margin: 0; |
||||
padding: 0 10px 10px; |
||||
|
||||
position: relative; |
||||
z-index: 10000; |
||||
|
||||
white-space: nowrap; |
||||
} |
||||
|
||||
.select2-search:after { |
||||
content: ''; |
||||
display: block; |
||||
width: 100%; |
||||
border-bottom: 1px dotted #cccccc; |
||||
padding: 0 10px; |
||||
margin: 5px -10px 0; |
||||
} |
||||
|
||||
.select2-search input[type='text'] { |
||||
position: relative; |
||||
width: 100%; |
||||
height: 26px; |
||||
border: none; |
||||
padding: 0; |
||||
margin: 0; |
||||
outline: 0; |
||||
font-family: 'dindisplay_pro', sans-serif; |
||||
font-size: 15px; |
||||
line-height: 26px; |
||||
|
||||
-webkit-box-shadow: none; |
||||
-moz-box-shadow: none; |
||||
box-shadow: none; |
||||
|
||||
background: #fff url('../img/select2/select2.png') no-repeat 100% -22px; |
||||
} |
||||
|
||||
.select2-search input:focus { |
||||
border: none; |
||||
} |
||||
|
||||
.select2-search input.select2-active { |
||||
background: #fff url('../img/select2/select2-spinner.gif') no-repeat 100%; |
||||
} |
||||
|
||||
.select2-hidden-accessible { |
||||
border: 0; |
||||
clip: rect(0 0 0 0); |
||||
height: 1px; |
||||
margin: -1px; |
||||
overflow: hidden; |
||||
padding: 0; |
||||
position: absolute; |
||||
width: 1px; |
||||
} |
||||
|
||||
|
||||
.select2-default { |
||||
color: #a2a2a2 !important; |
||||
} |
||||
|
||||
|
||||
/* results */ |
||||
.select2-results { |
||||
max-height: 200px; |
||||
padding: 0 0 0 5px; |
||||
margin: 5px 5px 5px 0; |
||||
position: relative; |
||||
overflow-x: hidden; |
||||
overflow-y: auto; |
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0); |
||||
} |
||||
|
||||
html[dir="rtl"] .select2-results { |
||||
padding: 0 5px 0 0; |
||||
margin: 5px 0 5px 5px; |
||||
} |
||||
|
||||
.select2-results ul.select2-result-sub { |
||||
margin: 0; |
||||
padding-left: 0; |
||||
} |
||||
|
||||
.select2-results li { |
||||
list-style: none; |
||||
display: list-item; |
||||
background-image: none; |
||||
} |
||||
|
||||
.select2-results li.select2-result-with-children > .select2-result-label { |
||||
font-weight: bold; |
||||
} |
||||
|
||||
.select2-results .select2-result-label { |
||||
padding: 3px 7px 4px; |
||||
margin: 0; |
||||
cursor: pointer; |
||||
|
||||
min-height: 1em; |
||||
|
||||
-webkit-touch-callout: none; |
||||
-webkit-user-select: none; |
||||
-moz-user-select: none; |
||||
-ms-user-select: none; |
||||
user-select: none; |
||||
} |
||||
|
||||
.select2-results-dept-1 .select2-result-label { padding-left: 20px } |
||||
.select2-results-dept-2 .select2-result-label { padding-left: 40px } |
||||
.select2-results-dept-3 .select2-result-label { padding-left: 60px } |
||||
.select2-results-dept-4 .select2-result-label { padding-left: 80px } |
||||
.select2-results-dept-5 .select2-result-label { padding-left: 100px } |
||||
.select2-results-dept-6 .select2-result-label { padding-left: 110px } |
||||
.select2-results-dept-7 .select2-result-label { padding-left: 120px } |
||||
|
||||
.select2-results .select2-highlighted { |
||||
background: none; |
||||
color: #ff6600; |
||||
} |
||||
|
||||
.select2-results li em { |
||||
background: #feffde; |
||||
font-style: normal; |
||||
} |
||||
|
||||
.select2-results .select2-highlighted em { |
||||
background: transparent; |
||||
} |
||||
|
||||
.select2-results .select2-highlighted ul { |
||||
background: #fff; |
||||
color: #000; |
||||
} |
||||
|
||||
.select2-results .select2-no-results, |
||||
.select2-results .select2-searching, |
||||
.select2-results .select2-ajax-error, |
||||
.select2-results .select2-selection-limit { |
||||
background: #f4f4f4; |
||||
display: list-item; |
||||
padding-left: 5px; |
||||
} |
||||
|
||||
/* |
||||
disabled look for disabled choices in the results dropdown |
||||
*/ |
||||
.select2-results .select2-disabled.select2-highlighted { |
||||
color: #666; |
||||
background: #f4f4f4; |
||||
display: list-item; |
||||
cursor: default; |
||||
} |
||||
.select2-results .select2-disabled { |
||||
background: #f4f4f4; |
||||
display: list-item; |
||||
cursor: default; |
||||
} |
||||
|
||||
.select2-results .select2-selected { |
||||
display: none; |
||||
} |
||||
|
||||
.select2-more-results.select2-active { |
||||
background: #f4f4f4 url('../img/select2/select2-spinner.gif') no-repeat 100%; |
||||
} |
||||
|
||||
.select2-results .select2-ajax-error { |
||||
background: rgba(255, 50, 50, .2); |
||||
} |
||||
|
||||
.select2-more-results { |
||||
background: #f4f4f4; |
||||
display: list-item; |
||||
} |
||||
|
||||
/* disabled styles */ |
||||
|
||||
.select2-container.select2-container-disabled .select2-choice { |
||||
background: #ffffff; |
||||
cursor: default; |
||||
} |
||||
|
||||
.select2-container.select2-container-disabled .select2-choice .select2-arrow { |
||||
background: none; |
||||
border-left: 0; |
||||
} |
||||
|
||||
.select2-container.select2-container-disabled .select2-choice abbr { |
||||
display: none; |
||||
} |
||||
|
||||
|
||||
|
||||
/* multiselect */ |
||||
|
||||
|
||||
.select2-container-multi .select2-choices .select2-search-choice { |
||||
position: relative; |
||||
padding: 6px 25px 5px 15px; |
||||
margin: 0 3px 3px 0; |
||||
border: 1px solid #ff6600; |
||||
line-height: 15px; |
||||
color: #ff6600; |
||||
cursor: default; |
||||
|
||||
background: #ffffff; |
||||
|
||||
-webkit-border-radius: 3px; |
||||
-moz-border-radius: 3px; |
||||
border-radius: 3px; |
||||
|
||||
-webkit-box-shadow: none; |
||||
-moz-box-shadow: none; |
||||
box-shadow: none; |
||||
|
||||
-webkit-touch-callout: none; |
||||
-webkit-user-select: none; |
||||
-moz-user-select: none; |
||||
-ms-user-select: none; |
||||
user-select: none; |
||||
} |
||||
|
||||
.select2-locked { |
||||
padding: 3px 5px 3px 5px !important; |
||||
} |
||||
|
||||
.select2-container-multi .select2-choices li { |
||||
float: left; |
||||
list-style: none; |
||||
} |
||||
|
||||
html[dir="rtl"] .select2-container-multi .select2-choices li |
||||
{ |
||||
float: right; |
||||
} |
||||
|
||||
.select2-container-multi .select2-choices .select2-search-field { |
||||
margin: 0; |
||||
padding: 0; |
||||
white-space: nowrap; |
||||
} |
||||
|
||||
.select2-container-multi .select2-choices .select2-search-field input { |
||||
background: none !important; |
||||
border: none; |
||||
outline: none; |
||||
color: #666; |
||||
margin: 0; |
||||
padding: 0 5px; |
||||
height: 29px; |
||||
font-family: 'dindisplay_pro', sans-serif; |
||||
line-height: 27px; |
||||
-webkit-box-shadow: none; |
||||
-moz-box-shadow: none; |
||||
box-shadow: none; |
||||
-webkit-border-radius: 3px; |
||||
-moz-border-radius: 3px; |
||||
border-radius: 3px; |
||||
-webkit-box-sizing: border-box; |
||||
-moz-box-sizing: border-box; |
||||
box-sizing: border-box; |
||||
} |
||||
|
||||
.select2-container-multi .select2-choices .select2-search-field:first-child input { |
||||
padding: 0 20px; |
||||
} |
||||
|
||||
/* end multiselect */ |
||||
|
||||
|
||||
.select2-result-selectable .select2-match, |
||||
.select2-result-unselectable .select2-match { |
||||
text-decoration: underline; |
||||
} |
||||
|
||||
.select2-offscreen, .select2-offscreen:focus { |
||||
clip: rect(0 0 0 0) !important; |
||||
width: 1px !important; |
||||
height: 1px !important; |
||||
border: 0 !important; |
||||
margin: 0 !important; |
||||
padding: 0 !important; |
||||
overflow: hidden !important; |
||||
position: absolute !important; |
||||
outline: 0 !important; |
||||
left: 0px !important; |
||||
top: 0px !important; |
||||
} |
||||
|
||||
.select2-display-none { |
||||
display: none; |
||||
} |
||||
|
||||
.select2-measure-scrollbar { |
||||
position: absolute; |
||||
top: -10000px; |
||||
left: -10000px; |
||||
width: 100px; |
||||
height: 100px; |
||||
overflow: scroll; |
||||
} |
||||
|
After Width: | Height: | Size: 70 KiB |
|
After Width: | Height: | Size: 80 KiB |
|
After Width: | Height: | Size: 74 KiB |
|
After Width: | Height: | Size: 71 KiB |
|
After Width: | Height: | Size: 71 KiB |
|
After Width: | Height: | Size: 72 KiB |
@ -0,0 +1,118 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
||||
"http://www.w3.org/TR/html4/loose.dtd"> |
||||
<html style="margin: 0; padding: 0; height: 100%;"> |
||||
<head> |
||||
<title></title> |
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> |
||||
</head> |
||||
<body style="margin: 0; padding: 0; min-height: 100%; background: #f4f2ee;"> |
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%" bgcolor="#f4f2ee" style="font-family: Arial, sans-serif; background: #f4f2ee;"> |
||||
<tr> |
||||
<td align="center" style="padding: 50px 0"> |
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px;"> |
||||
<tr> |
||||
<td style="vertical-align: top;"> |
||||
<div class="logo"> |
||||
<a style="text-decoration: none; color: #a2a2a2; font-size: 12px;" href="#"> |
||||
<img src="../img/logo.png" alt="Expomap.ru" /> |
||||
<b style="display: block; padding-left: 67px; margin-top: -5px;">Выставки, конференции, семинары</b> |
||||
</a> |
||||
</div> |
||||
</td> |
||||
<td style="vertical-align: top; padding-top: 22px;"> |
||||
<ul class="t-links" style="margin: 0 0 15px; padding: 0; list-style: none; text-align: right; font-size: 16px; line-height: 17px; font-weight: bold;"> |
||||
<li style="display: inline-block;"><a style="text-decoration: none; color: #ff6600" href="#">СОБЫТИЯ</a></li> |
||||
<li style="display: inline-block; margin-left: 20px;"><a style="text-decoration: none; color: #ff6600" href="#">МЕСТА</a></li> |
||||
<li style="display: inline-block; margin-left: 20px;"><a style="text-decoration: none; color: #ff6600" href="#">УЧАСТНИКИ</a></li> |
||||
</ul> |
||||
|
||||
<ul class="soc-media-buttons" style="margin: 0; padding: 0; list-style: none; text-align: right;"> |
||||
<li style="display: inline-block;"><a href="#"><img src="../img/soc-medias/sm-icon-rss.png" title="RSS" alt="RSS" /></a></li> |
||||
<li style="display: inline-block; margin-left: 5px;"><a href="#"><img src="../img/soc-medias/sm-icon-fb.png" title="Facebook" alt="Facebook" /></a></li> |
||||
<li style="display: inline-block; margin-left: 5px;"><a href="#"><img src="../img/soc-medias/sm-icon-lin.png" title="LinkedIn" alt="LinkedIn" /></a></li> |
||||
<li style="display: inline-block; margin-left: 5px;"><a href="#"><img src="../img/soc-medias/sm-icon-vk.png" title="В контакте" alt="В контакте" /></a></li> |
||||
<li style="display: inline-block; margin-left: 5px;"><a href="#"><img src="../img/soc-medias/sm-icon-twit.png" title="Twitter" alt="Twitter" /></a></li> |
||||
</ul> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px; margin-bottom: 10px;"> |
||||
<tr> |
||||
<td style="padding: 20px 0 0;"><p style="display: block; padding: 25px 30px; text-decoration: none; background: #ff6600; color: #ffffff; font-size: 20px; line-height: 26px; margin-bottom: 0;" >Ваша регистрация на портале <a href="http://expomap.ru/" style="color: #ffffff;text-decoration: none;border-bottom: 1px dashed #ee3824;">Expomap</a></p></td> |
||||
</tr> |
||||
<tr> |
||||
<td style="padding: 10px 30px 15px; background: #faf9f7;"> |
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="540" style="margin-bottom: 15px;"> |
||||
|
||||
<tr valign="top"> |
||||
<td style="padding: 15px 0 36px 0;"> |
||||
<p style="font-weight: bold;color: #003e79;margin: 0;">Добрый день, Михаил!</p> |
||||
</td> |
||||
</tr> |
||||
<tr valign="top"> |
||||
<td style="padding: 0 0 32px 0;"> |
||||
<p>Благодарим за регистрацию! Остался 1 шаг - подтвердить Ваш электронный адрес, нажав на кнопку:</p> |
||||
</td> |
||||
</tr> |
||||
<tr valign="top"> |
||||
<td style="padding: 0 0 42px 0; text-align: center;"> |
||||
<a class="button" style="display: inline-block; padding: 4px 10px 3px; text-decoration: none; color: #2592c5; font-size: 14px; font-weight: bold; line-height: 14px; border: 1px solid #90c7e0; text-transform: uppercase; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; width: 336px;" href="#">подтвердить регистрацию</a> |
||||
</td> |
||||
</tr> |
||||
<tr valign="top"> |
||||
<td style="padding: 0 0 32px 0; text-align: left; border-bottom: 1px dotted #cccccc;"> |
||||
<p style="margin: 0;">Ваш логин: 144@expomap.ru</p> |
||||
<p style="margin: 0;">Ваш пароль: <span style="border-bottom: 1px dashed #ee3824;">Rem1shie</span></p> |
||||
</td> |
||||
</tr> |
||||
<tr valign="top"> |
||||
<td style="padding:32px 0 20px 0; text-align: left;"> |
||||
В личном кабинете вам доступен собственный профиль, персональная лента <span style="border-bottom: 1px dashed #ee3824;">событий</span>,свое расписание, сообщения и многое другое. |
||||
</td> |
||||
</tr> |
||||
|
||||
</table> |
||||
|
||||
|
||||
|
||||
</td> |
||||
</tr> |
||||
</table> |
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px; border-bottom: 1px dotted #cccccc;"> |
||||
<tr> |
||||
<td style="vertical-align: top; padding: 15px 0 10px;"> |
||||
<div class="logo"> |
||||
<a style="text-decoration: none; color: #a2a2a2; font-size: 12px;" href="#"> |
||||
<img src="../img/mail-logo-2.jpg" alt="Expomap.ru" /> |
||||
</a> |
||||
</div> |
||||
</td> |
||||
<td style="vertical-align: top; padding: 25px 0 5px;"> |
||||
<ul class="t-links" style="margin: 0 0 15px; padding: 0; list-style: none; text-align: right; font-size: 14px; line-height: 15px; font-weight: bold;"> |
||||
<li style="display: inline-block;"><a style="text-decoration: none; color: #ff6600" href="#">СОБЫТИЯ</a></li> |
||||
<li style="display: inline-block; margin-left: 20px;"><a style="text-decoration: none; color: #ff6600" href="#">МЕСТА</a></li> |
||||
<li style="display: inline-block; margin-left: 20px;"><a style="text-decoration: none; color: #ff6600" href="#">УЧАСТНИКИ</a></li> |
||||
</ul> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px; font-size: 12px; line-height: 15px;"> |
||||
<tr> |
||||
<td style="vertical-align: top; padding: 15px 0 15px;"> |
||||
Чтобы отписаться от этой рассылки, перейдите <a style="color: #ff6600;" href="#">по ссылке</a> |
||||
</td> |
||||
<td style="vertical-align: top; padding: 15px 0 15px; color: #a2a2a2; text-align: right;"> |
||||
© 2018 — 2013 <a style="color: #a2a2a2; text-decoration: none;" href="#">Expomap.ru</a> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
|
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,311 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
||||
"http://www.w3.org/TR/html4/loose.dtd"> |
||||
<html style="margin: 0; padding: 0; height: 100%;"> |
||||
<head> |
||||
<title></title> |
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> |
||||
</head> |
||||
<body style="margin: 0; padding: 0; min-height: 100%; background: #f4f2ee;"> |
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%" bgcolor="#f4f2ee" style="font-family: Arial, sans-serif; background: #f4f2ee;"> |
||||
<tr> |
||||
<td align="center" style="padding: 50px 0"> |
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px;"> |
||||
<tr> |
||||
<td style="vertical-align: top;"> |
||||
<div class="logo"> |
||||
<a style="text-decoration: none; color: #a2a2a2; font-size: 12px;" href="#"> |
||||
<img src="../img/logo.png" alt="Expomap.ru" /> |
||||
<b style="display: block; padding-left: 67px; margin-top: -5px;">Выставки, конференции, семинары</b> |
||||
</a> |
||||
</div> |
||||
</td> |
||||
<td style="vertical-align: top; padding-top: 22px;"> |
||||
<ul class="t-links" style="margin: 0 0 15px; padding: 0; list-style: none; text-align: right; font-size: 16px; line-height: 17px; font-weight: bold;"> |
||||
<li style="display: inline-block;"><a style="text-decoration: none; color: #ff6600" href="#">СОБЫТИЯ</a></li> |
||||
<li style="display: inline-block; margin-left: 20px;"><a style="text-decoration: none; color: #ff6600" href="#">МЕСТА</a></li> |
||||
<li style="display: inline-block; margin-left: 20px;"><a style="text-decoration: none; color: #ff6600" href="#">УЧАСТНИКИ</a></li> |
||||
</ul> |
||||
|
||||
<ul class="soc-media-buttons" style="margin: 0; padding: 0; list-style: none; text-align: right;"> |
||||
<li style="display: inline-block;"><a href="#"><img src="../img/soc-medias/sm-icon-rss.png" title="RSS" alt="RSS" /></a></li> |
||||
<li style="display: inline-block; margin-left: 5px;"><a href="#"><img src="../img/soc-medias/sm-icon-fb.png" title="Facebook" alt="Facebook" /></a></li> |
||||
<li style="display: inline-block; margin-left: 5px;"><a href="#"><img src="../img/soc-medias/sm-icon-lin.png" title="LinkedIn" alt="LinkedIn" /></a></li> |
||||
<li style="display: inline-block; margin-left: 5px;"><a href="#"><img src="../img/soc-medias/sm-icon-vk.png" title="В контакте" alt="В контакте" /></a></li> |
||||
<li style="display: inline-block; margin-left: 5px;"><a href="#"><img src="../img/soc-medias/sm-icon-twit.png" title="Twitter" alt="Twitter" /></a></li> |
||||
</ul> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
|
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px; margin-bottom: 10px;"> |
||||
<tr> |
||||
<td style="padding: 20px 0 0;"><a style="display: block; padding: 25px 30px; text-decoration: none; background: #ff6600; color: #ffffff; font-size: 20px; line-height: 26px;" href="#">Выставки в Москве по тематике: <b style="display: block; font-size: 26px;">Мебель, Дизайн интерьеров</b></a></td> |
||||
</tr> |
||||
<tr> |
||||
<td style="padding: 10px 30px 15px; background: #faf9f7;"> |
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="540" style="margin-bottom: 15px;"> |
||||
|
||||
<tr valign="top"> |
||||
<td style="padding: 15px 15px 15px 0; width: 76px; border-bottom: 1px dotted #cccccc;"> |
||||
<table cellpadding="0" cellspacing="0" border="0"> |
||||
<tr> |
||||
<td style="background: #ffffff; padding: 3px; width: 70px; height: 70px; vertical-align: middle; text-align: center; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;"><a href="#"><img src="../img/_del-temp/cl-logo-1.png" style="width: 100%;" alt="" /></a></td> |
||||
</tr> |
||||
</table> |
||||
</td> |
||||
<td style="padding: 15px 15px 15px 0; border-bottom: 1px dotted #cccccc;"> |
||||
<h2 style="margin: 0 0 5px; font-family: Tahoma, Arial, sans-serif; font-size: 18px; line-height: 21px;"><a style="color: #464646; text-decoration: none;" href="#">Foire de Pau 2013</a></h2> |
||||
<p style="margin: 0 0 7px; font-size: 12px; line-height: 15px; color: #a2a2a2"><a style="color: #a2a2a2; text-decoration: none;" href="#">Международная ярмарка потребительских товаров</a></p> |
||||
<a class="button" style="display: inline-block; padding: 4px 10px 3px; text-decoration: none; color: #ff6600; font-size: 11px; font-weight: bold; line-height: 14px; border: 1px solid #feb17d; text-transform: uppercase; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;" href="#">добавить в расписание</a> |
||||
<div class="addr" style="margin-top: 10px; font-size: 13px; line-height: 15px;"><img src="../img/pin.png" width="10" height="15" alt="" style="vertical-align: middle; margin-top: -1px;" /> Россия, Москва, ЦВК «Экспоцентр»</div> |
||||
</td> |
||||
<td style="padding: 17px 0; text-align: right; font-size: 13px; line-height: 16px; color: #ff6600; width: 140px; border-bottom: 1px dotted #cccccc;"> |
||||
<img src="../img/clock.png" width="14" height="15" style="vertical-align: middle; margin-top: -1px;" alt="" /> с 5 по 20 октября |
||||
</td> |
||||
</tr> |
||||
|
||||
<tr valign="top"> |
||||
<td style="padding: 15px 15px 15px 0; width: 76px; border-bottom: 1px dotted #cccccc;"> |
||||
<table cellpadding="0" cellspacing="0" border="0"> |
||||
<tr> |
||||
<td style="background: #ffffff; padding: 3px; width: 70px; height: 70px; vertical-align: middle; text-align: center; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;"><a href="#"><img src="../img/_del-temp/cl-logo-2.png" style="width: 100%;" alt="" /></a></td> |
||||
</tr> |
||||
</table> |
||||
</td> |
||||
<td style="padding: 15px 15px 15px 0; border-bottom: 1px dotted #cccccc;"> |
||||
<h2 style="margin: 0 0 5px; font-family: Tahoma, Arial, sans-serif; font-size: 18px; line-height: 21px;"><a style="color: #464646; text-decoration: none;" href="#">Foire de Pau 2013</a></h2> |
||||
<p style="margin: 0 0 7px; font-size: 12px; line-height: 15px; color: #a2a2a2"><a style="color: #a2a2a2; text-decoration: none;" href="#">Международная ярмарка потребительских товаров</a></p> |
||||
<a class="button" style="display: inline-block; padding: 4px 10px 3px; text-decoration: none; color: #ff6600; font-size: 11px; font-weight: bold; line-height: 14px; border: 1px solid #feb17d; text-transform: uppercase; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;" href="#">добавить в расписание</a> |
||||
<div class="addr" style="margin-top: 10px; font-size: 13px; line-height: 15px;"><img src="../img/pin.png" width="10" height="15" alt="" style="vertical-align: middle; margin-top: -1px;" /> Россия, Москва, ЦВК «Экспоцентр»</div> |
||||
</td> |
||||
<td style="padding: 17px 0; text-align: right; font-size: 13px; line-height: 16px; color: #ff6600; width: 140px; border-bottom: 1px dotted #cccccc;"> |
||||
<img src="../img/clock.png" width="14" height="15" style="vertical-align: middle; margin-top: -1px;" alt="" /> с 5 по 20 октября |
||||
</td> |
||||
</tr> |
||||
|
||||
<tr valign="top"> |
||||
<td style="padding: 15px 15px 15px 0; width: 76px; border-bottom: 1px dotted #cccccc;"> |
||||
<table cellpadding="0" cellspacing="0" border="0"> |
||||
<tr> |
||||
<td style="background: #ffffff; padding: 3px; width: 70px; height: 70px; vertical-align: middle; text-align: center; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;"><a href="#"><img src="../img/_del-temp/cl-logo-3.png" style="width: 100%;" alt="" /></a></td> |
||||
</tr> |
||||
</table> |
||||
</td> |
||||
<td style="padding: 15px 15px 15px 0; border-bottom: 1px dotted #cccccc;"> |
||||
<h2 style="margin: 0 0 5px; font-family: Tahoma, Arial, sans-serif; font-size: 18px; line-height: 21px;"><a style="color: #464646; text-decoration: none;" href="#">Foire de Pau 2013</a></h2> |
||||
<p style="margin: 0 0 7px; font-size: 12px; line-height: 15px; color: #a2a2a2"><a style="color: #a2a2a2; text-decoration: none;" href="#">Международная ярмарка потребительских товаров</a></p> |
||||
<a class="button" style="display: inline-block; padding: 4px 10px 3px; text-decoration: none; color: #ff6600; font-size: 11px; font-weight: bold; line-height: 14px; border: 1px solid #feb17d; text-transform: uppercase; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;" href="#">добавить в расписание</a> |
||||
<div class="addr" style="margin-top: 10px; font-size: 13px; line-height: 15px;"><img src="../img/pin.png" width="10" height="15" alt="" style="vertical-align: middle; margin-top: -1px;" /> Россия, Москва, ЦВК «Экспоцентр»</div> |
||||
</td> |
||||
<td style="padding: 17px 0; text-align: right; font-size: 13px; line-height: 16px; color: #ff6600; width: 140px; border-bottom: 1px dotted #cccccc;"> |
||||
<img src="../img/clock.png" width="14" height="15" style="vertical-align: middle; margin-top: -1px;" alt="" /> с 5 по 20 октября |
||||
</td> |
||||
</tr> |
||||
|
||||
</table> |
||||
|
||||
<div class="more" style="text-align: center;"> |
||||
<a class="button" style="display: inline-block; padding: 4px 10px 3px; text-decoration: none; color: #2592c5; font-size: 11px; font-weight: bold; line-height: 14px; border: 1px solid #90c7e0; text-transform: uppercase; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; width: 336px;" href="#">посмотреть все события</a> |
||||
</div> |
||||
|
||||
</td> |
||||
</tr> |
||||
</table> |
||||
|
||||
|
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px; margin-bottom: 10px;"> |
||||
<tr> |
||||
<td style="padding: 20px 0 0;"><a style="display: block; padding: 25px 30px; text-decoration: none; background: #ff6600; color: #ffffff; font-size: 20px; line-height: 26px;" href="#">Новости событий</a></td> |
||||
</tr> |
||||
<tr> |
||||
<td style="padding: 10px 30px 15px; background: #faf9f7;"> |
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="540" style="margin-bottom: 15px;"> |
||||
|
||||
<tr valign="top"> |
||||
<td style="padding: 15px 15px 15px 0; width: 76px; border-bottom: 1px dotted #cccccc;"> |
||||
<table cellpadding="0" cellspacing="0" border="0"> |
||||
<tr> |
||||
<td style="background: #ffffff; padding: 0; width: 76px; height: 76px; vertical-align: middle; text-align: center;"><a href="#"><img style="width: 100%; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;" alt="" src="../img/_del-temp/news-1.jpg" /></a></td> |
||||
</tr> |
||||
</table> |
||||
</td> |
||||
<td style="padding: 15px 0; border-bottom: 1px dotted #cccccc;"> |
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin-bottom: 5px;"> |
||||
<tr> |
||||
<td><h2 style="margin: 0 0 5px; font-family: Tahoma, Arial, sans-serif; font-size: 18px; line-height: 21px;"><a style="color: #464646; text-decoration: none;" href="#">Foire de Pau 2013</a></h2></td> |
||||
<td style="font-size: 13px; line-height: 15px; text-align: right; color: #ff6600;">05.10.2013</td> |
||||
</tr> |
||||
</table> |
||||
|
||||
<p style="margin: 0 0 7px; font-size: 13px; line-height: 17px;"><a style="color: #464646; text-decoration: none;" href="#">VII Международный форум «АтомЭко 2013» пройдет 30-31 октября в Москве под знаком нулевого ущерба для экологии. Главная тема VIIМеждународного Форума «АтомЭко 2013»: «Атомная энергетика – стратегия нулевого ущерба», где будут обсуждаться вопросы по обращению с радиоактивными отходами (РАО) и отработавшим <span style="text-decoration: underline; color: #ff6600;">...</span></a></p> |
||||
|
||||
</td> |
||||
</tr> |
||||
|
||||
<tr valign="top"> |
||||
<td style="padding: 15px 15px 15px 0; width: 76px; border-bottom: 1px dotted #cccccc;"> |
||||
<table cellpadding="0" cellspacing="0" border="0"> |
||||
<tr> |
||||
<td style="background: #ffffff; padding: 0; width: 76px; height: 76px; vertical-align: middle; text-align: center;"><a href="#"><img style="width: 100%; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;" alt="" src="../img/_del-temp/news-1.jpg" /></a></td> |
||||
</tr> |
||||
</table> |
||||
</td> |
||||
<td style="padding: 15px 0; border-bottom: 1px dotted #cccccc;"> |
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin-bottom: 5px;"> |
||||
<tr> |
||||
<td><h2 style="margin: 0 0 5px; font-family: Tahoma, Arial, sans-serif; font-size: 18px; line-height: 21px;"><a style="color: #464646; text-decoration: none;" href="#">Foire de Pau 2013</a></h2></td> |
||||
<td style="font-size: 13px; line-height: 15px; text-align: right; color: #ff6600;">05.10.2013</td> |
||||
</tr> |
||||
</table> |
||||
|
||||
<p style="margin: 0 0 7px; font-size: 13px; line-height: 17px;"><a style="color: #464646; text-decoration: none;" href="#">VII Международный форум «АтомЭко 2013» пройдет 30-31 октября в Москве под знаком нулевого ущерба для экологии. Главная тема VIIМеждународного Форума «АтомЭко 2013»: «Атомная энергетика – стратегия нулевого ущерба», где будут обсуждаться вопросы по обращению с радиоактивными отходами (РАО) и отработавшим <span style="text-decoration: underline; color: #ff6600;">...</span></a></p> |
||||
|
||||
</td> |
||||
</tr> |
||||
|
||||
<tr valign="top"> |
||||
<td style="padding: 15px 0; width: 76px; border-bottom: 1px dotted #cccccc;"> |
||||
<table cellpadding="0" cellspacing="0" border="0"> |
||||
<tr> |
||||
<td style="background: #ffffff; padding: 0; width: 76px; height: 76px; vertical-align: middle; text-align: center;"><a href="#"><img style="width: 100%; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;" alt="" src="../img/_del-temp/news-1.jpg" /></a></td> |
||||
</tr> |
||||
</table> |
||||
</td> |
||||
<td style="padding: 15px 15px 15px 0; border-bottom: 1px dotted #cccccc;"> |
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin-bottom: 5px;"> |
||||
<tr> |
||||
<td><h2 style="margin: 0 0 5px; font-family: Tahoma, Arial, sans-serif; font-size: 18px; line-height: 21px;"><a style="color: #464646; text-decoration: none;" href="#">Foire de Pau 2013</a></h2></td> |
||||
<td style="font-size: 13px; line-height: 15px; text-align: right; color: #ff6600;">05.10.2013</td> |
||||
</tr> |
||||
</table> |
||||
|
||||
<p style="margin: 0 0 7px; font-size: 13px; line-height: 17px;"><a style="color: #464646; text-decoration: none;" href="#">VII Международный форум «АтомЭко 2013» пройдет 30-31 октября в Москве под знаком нулевого ущерба для экологии. Главная тема VIIМеждународного Форума «АтомЭко 2013»: «Атомная энергетика – стратегия нулевого ущерба», где будут обсуждаться вопросы по обращению с радиоактивными отходами (РАО) и отработавшим <span style="text-decoration: underline; color: #ff6600;">...</span></a></p> |
||||
|
||||
</td> |
||||
</tr> |
||||
|
||||
</table> |
||||
|
||||
<div class="more" style="text-align: center;"> |
||||
<a class="button" style="display: inline-block; padding: 4px 10px 3px; text-decoration: none; color: #2592c5; font-size: 11px; font-weight: bold; line-height: 14px; border: 1px solid #90c7e0; text-transform: uppercase; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; width: 336px;" href="#">посмотреть все новости</a> |
||||
</div> |
||||
|
||||
</td> |
||||
</tr> |
||||
</table> |
||||
|
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px; margin-bottom: 10px;"> |
||||
<tr> |
||||
<td style="padding: 20px 0 0;"><a style="display: block; padding: 25px 30px; text-decoration: none; background: #ff6600; color: #ffffff; font-size: 20px; line-height: 26px;" href="#">Фоторепортаж: Международный форум «АтомЭко 2013»</a></td> |
||||
</tr> |
||||
<tr> |
||||
<td style="padding: 10px 30px 15px; background: #faf9f7;"> |
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="540" style="margin-bottom: 15px;"> |
||||
|
||||
<tr valign="top"> |
||||
<td style="padding: 15px 0; border-bottom: 1px dotted #cccccc;"> |
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" style="margin-bottom: 10px;"> |
||||
<tr> |
||||
<td style="width: 100px;"><a href="#"><img src="../img/_del-temp/phr-1.jpg" width="100" height="100" alt="" /></a></td> |
||||
<td style="width: 100px; padding-left: 10px;"><a href="#"><img src="../img/_del-temp/phr-2.jpg" width="100" height="100" alt="" /></a></td> |
||||
<td style="width: 100px; padding-left: 10px;"><a href="#"><img src="../img/_del-temp/phr-3.jpg" width="100" height="100" alt="" /></a></td> |
||||
<td style="width: 100px; padding-left: 10px;"><a href="#"><img src="../img/_del-temp/phr-4.jpg" width="100" height="100" alt="" /></a></td> |
||||
<td style="width: 100px; padding-left: 10px;"><a href="#"><img src="../img/_del-temp/phr-2.jpg" width="100" height="100" alt="" /></a></td> |
||||
</tr> |
||||
</table> |
||||
|
||||
<p style="margin: 0 0 7px; font-size: 12px; line-height: 15px;"><a style="color: #464646; text-decoration: none;" href="#">Идея Russian Affiliate Congress and Expo возникла в ответ на необходимость развития бизнеса России и стран СНГ в соответствии с мировыми тенденциями. Партнерские программы — один из наиболее эффективных и широко применяемых на западе инструментов интернет маркетинга, доля которого на рынке интернет продвижения развитых стран около 40 %, для сравнения в России и странах СНГ на этот сегмент приходится около 10%. Разница очевидна.</a></p> |
||||
|
||||
</td> |
||||
</tr> |
||||
|
||||
</table> |
||||
|
||||
<div class="more" style="text-align: center;"> |
||||
<a class="button" style="display: inline-block; padding: 4px 10px 3px; text-decoration: none; color: #2592c5; font-size: 11px; font-weight: bold; line-height: 14px; border: 1px solid #90c7e0; text-transform: uppercase; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; width: 336px;" href="#">посмотреть все фотрепортажи</a> |
||||
</div> |
||||
|
||||
</td> |
||||
</tr> |
||||
</table> |
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px; margin-bottom: 10px;"> |
||||
<tr> |
||||
<td style="padding: 20px 0 0;"><a href="#"><img src="../img/_del-temp/mail-banner.jpg" width="600" height="145" alt="" /></a></td> |
||||
</tr> |
||||
</table> |
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px; margin-bottom: 10px;"> |
||||
<tr> |
||||
<td style="padding: 20px 0 0;"><a style="display: block; padding: 25px 30px; text-decoration: none; background: #ff6600; color: #ffffff; font-size: 20px; line-height: 26px;" href="#">Аналитика для профессионалов</a></td> |
||||
</tr> |
||||
<tr> |
||||
<td style="padding: 10px 30px 15px; background: #faf9f7;"> |
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="540"> |
||||
|
||||
<tr valign="top"> |
||||
<td style="padding: 15px 15px 0 0; width: 76px;"> |
||||
<table cellpadding="0" cellspacing="0" border="0"> |
||||
<tr> |
||||
<td style="background: #ffffff; padding: 0; width: 76px; height: 76px; vertical-align: middle; text-align: center;"><a href="#"><img style="width: 100%; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;" alt="" src="../img/_del-temp/news-1.jpg" /></a></td> |
||||
</tr> |
||||
</table> |
||||
</td> |
||||
<td style="padding: 15px 0 0;"> |
||||
|
||||
<h2 style="margin: 0 0 5px; font-family: Tahoma, Arial, sans-serif; font-size: 18px; line-height: 21px;"><a style="color: #464646; text-decoration: none;" href="#">Древние славянские практики для оздоровления души и тела презентуют на красноярской Ярмарке здоровья</a></h2> |
||||
<p style="margin: 0 0 7px; font-size: 13px; line-height: 17px;"><a style="color: #464646; text-decoration: none;" href="#">VII Международный форум «АтомЭко 2013» пройдет 30-31 октября в Москве под знаком нулевого ущерба для экологии. Главная тема VIIМеждународного Форума «АтомЭко 2013»: «Атомная энергетика – стратегия нулевого ущерба», где будут обсуждаться вопросы по обращению с радиоактивными отходами (РАО) и отработавшим <span style="text-decoration: underline; color: #ff6600;">...</span></a></p> |
||||
|
||||
</td> |
||||
</tr> |
||||
|
||||
</table> |
||||
|
||||
</td> |
||||
</tr> |
||||
</table> |
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px; border-bottom: 1px dotted #cccccc;"> |
||||
<tr> |
||||
<td style="vertical-align: top; padding: 15px 0 10px;"> |
||||
<div class="logo"> |
||||
<a style="text-decoration: none; color: #a2a2a2; font-size: 12px;" href="#"> |
||||
<img src="../img/mail-logo-2.jpg" alt="Expomap.ru" /> |
||||
</a> |
||||
</div> |
||||
</td> |
||||
<td style="vertical-align: top; padding: 25px 0 5px;"> |
||||
<ul class="t-links" style="margin: 0 0 15px; padding: 0; list-style: none; text-align: right; font-size: 14px; line-height: 15px; font-weight: bold;"> |
||||
<li style="display: inline-block;"><a style="text-decoration: none; color: #ff6600" href="#">СОБЫТИЯ</a></li> |
||||
<li style="display: inline-block; margin-left: 20px;"><a style="text-decoration: none; color: #ff6600" href="#">МЕСТА</a></li> |
||||
<li style="display: inline-block; margin-left: 20px;"><a style="text-decoration: none; color: #ff6600" href="#">УЧАСТНИКИ</a></li> |
||||
</ul> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px; font-size: 12px; line-height: 15px;"> |
||||
<tr> |
||||
<td style="vertical-align: top; padding: 15px 0 15px;"> |
||||
Чтобы отписаться от этой рассылки, перейдите <a style="color: #ff6600;" href="#">по ссылке</a> |
||||
</td> |
||||
<td style="vertical-align: top; padding: 15px 0 15px; color: #a2a2a2; text-align: right;"> |
||||
© 2018 — 2013 <a style="color: #a2a2a2; text-decoration: none;" href="#">Expomap.ru</a> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
|
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,117 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
||||
"http://www.w3.org/TR/html4/loose.dtd"> |
||||
<html style="margin: 0; padding: 0; height: 100%;"> |
||||
<head> |
||||
<title></title> |
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /> |
||||
</head> |
||||
<body style="margin: 0; padding: 0; min-height: 100%; background: #f4f2ee;"> |
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%" height="100%" bgcolor="#f4f2ee" style="font-family: Arial, sans-serif; background: #f4f2ee;"> |
||||
<tr> |
||||
<td align="center" style="padding: 50px 0"> |
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px;"> |
||||
<tr> |
||||
<td style="vertical-align: top;"> |
||||
<div class="logo"> |
||||
<a style="text-decoration: none; color: #a2a2a2; font-size: 12px;" href="#"> |
||||
<img src="../img/logo.png" alt="Expomap.ru" /> |
||||
<b style="display: block; padding-left: 67px; margin-top: -5px;">Выставки, конференции, семинары</b> |
||||
</a> |
||||
</div> |
||||
</td> |
||||
<td style="vertical-align: top; padding-top: 22px;"> |
||||
<ul class="t-links" style="margin: 0 0 15px; padding: 0; list-style: none; text-align: right; font-size: 16px; line-height: 17px; font-weight: bold;"> |
||||
<li style="display: inline-block;"><a style="text-decoration: none; color: #ff6600" href="#">СОБЫТИЯ</a></li> |
||||
<li style="display: inline-block; margin-left: 20px;"><a style="text-decoration: none; color: #ff6600" href="#">МЕСТА</a></li> |
||||
<li style="display: inline-block; margin-left: 20px;"><a style="text-decoration: none; color: #ff6600" href="#">УЧАСТНИКИ</a></li> |
||||
</ul> |
||||
|
||||
<ul class="soc-media-buttons" style="margin: 0; padding: 0; list-style: none; text-align: right;"> |
||||
<li style="display: inline-block;"><a href="#"><img src="../img/soc-medias/sm-icon-rss.png" title="RSS" alt="RSS" /></a></li> |
||||
<li style="display: inline-block; margin-left: 5px;"><a href="#"><img src="../img/soc-medias/sm-icon-fb.png" title="Facebook" alt="Facebook" /></a></li> |
||||
<li style="display: inline-block; margin-left: 5px;"><a href="#"><img src="../img/soc-medias/sm-icon-lin.png" title="LinkedIn" alt="LinkedIn" /></a></li> |
||||
<li style="display: inline-block; margin-left: 5px;"><a href="#"><img src="../img/soc-medias/sm-icon-vk.png" title="В контакте" alt="В контакте" /></a></li> |
||||
<li style="display: inline-block; margin-left: 5px;"><a href="#"><img src="../img/soc-medias/sm-icon-twit.png" title="Twitter" alt="Twitter" /></a></li> |
||||
</ul> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px; margin-bottom: 10px;"> |
||||
<tr> |
||||
<td style="padding: 20px 0 0;"><p style="display: block; padding: 25px 30px; text-decoration: none; background: #ff6600; color: #ffffff; font-size: 20px; line-height: 26px; margin-bottom: 0;" >Ваша регистрация на портале <a href="http://expomap.ru/" style="color: #ffffff;text-decoration: none;border-bottom: 1px dashed #ee3824;">Expomap</a></p></td> |
||||
</tr> |
||||
<tr> |
||||
<td style="padding: 10px 30px 15px; background: #faf9f7;"> |
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="540" style="margin-bottom: 15px;"> |
||||
|
||||
<tr valign="top"> |
||||
<td style="padding: 15px 0 36px 0;"> |
||||
<p style="font-weight: bold;color: #003e79;margin: 0;">Добрый день, Михаил!</p> |
||||
</td> |
||||
</tr> |
||||
<tr valign="top"> |
||||
<td style="padding: 0 0 23px 0;"> |
||||
Вы или кто-то еще сделал запрос на сброс пароля на сайте <a href="http://expomap.ru/" style="text-decoration: none;border-bottom: 1px dashed #ee3824;color: #645a5a;">expomap.ru</a> |
||||
</td> |
||||
</tr> |
||||
<tr valign="top"> |
||||
<td style="padding: 0 0 32px 0;"> |
||||
Вы можете восстановить доступ, нажав на кнопку ниже и указав новый пароль: |
||||
</td> |
||||
</tr> |
||||
<tr valign="top"> |
||||
<td style="padding: 0 0 32px 0; text-align: center;"> |
||||
<a class="button" style="display: inline-block; padding: 4px 10px 3px; text-decoration: none; color: #2592c5; font-size: 14px; font-weight: bold; line-height: 14px; border: 1px solid #90c7e0; text-transform: uppercase; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; width: 336px;" href="#">подтвердить регистрацию</a> |
||||
</td> |
||||
</tr> |
||||
<tr valign="top"> |
||||
<td style="padding: 0 0 20px 0; text-align: left; "> |
||||
Если вы не хотите сбрасывать пароль, просто <span style="border-bottom: 1px dashed #ee3824;">проигнорируйте</span> это сообщение |
||||
</td> |
||||
</tr> |
||||
|
||||
</table> |
||||
|
||||
|
||||
|
||||
</td> |
||||
</tr> |
||||
</table> |
||||
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px; border-bottom: 1px dotted #cccccc;"> |
||||
<tr> |
||||
<td style="vertical-align: top; padding: 15px 0 10px;"> |
||||
<div class="logo"> |
||||
<a style="text-decoration: none; color: #a2a2a2; font-size: 12px;" href="#"> |
||||
<img src="../img/mail-logo-2.jpg" alt="Expomap.ru" /> |
||||
</a> |
||||
</div> |
||||
</td> |
||||
<td style="vertical-align: top; padding: 25px 0 5px;"> |
||||
<ul class="t-links" style="margin: 0 0 15px; padding: 0; list-style: none; text-align: right; font-size: 14px; line-height: 15px; font-weight: bold;"> |
||||
<li style="display: inline-block;"><a style="text-decoration: none; color: #ff6600" href="#">СОБЫТИЯ</a></li> |
||||
<li style="display: inline-block; margin-left: 20px;"><a style="text-decoration: none; color: #ff6600" href="#">МЕСТА</a></li> |
||||
<li style="display: inline-block; margin-left: 20px;"><a style="text-decoration: none; color: #ff6600" href="#">УЧАСТНИКИ</a></li> |
||||
</ul> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
<table cellpadding="0" cellspacing="0" border="0" width="600" style="width: 600px; font-size: 12px; line-height: 15px;"> |
||||
<tr> |
||||
<td style="vertical-align: top; padding: 15px 0 15px;"> |
||||
Чтобы отписаться от этой рассылки, перейдите <a style="color: #ff6600;" href="#">по ссылке</a> |
||||
</td> |
||||
<td style="vertical-align: top; padding: 15px 0 15px; color: #a2a2a2; text-align: right;"> |
||||
© 2018 — 2013 <a style="color: #a2a2a2; text-decoration: none;" href="#">Expomap.ru</a> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
|
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</body> |
||||
</html> |
||||
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 1.4 KiB |
|
After Width: | Height: | Size: 5.1 KiB |
|
After Width: | Height: | Size: 4.5 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 4.1 KiB |
|
After Width: | Height: | Size: 4.5 KiB |
|
After Width: | Height: | Size: 8.2 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 250 B |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 1.5 KiB |
|
After Width: | Height: | Size: 5.4 KiB |
|
After Width: | Height: | Size: 120 KiB |
|
After Width: | Height: | Size: 19 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
|
After Width: | Height: | Size: 128 KiB |
|
After Width: | Height: | Size: 6.1 KiB |
|
After Width: | Height: | Size: 1.6 KiB |
|
After Width: | Height: | Size: 62 KiB |
|
After Width: | Height: | Size: 448 KiB |
|
After Width: | Height: | Size: 4.8 KiB |
|
After Width: | Height: | Size: 6.1 KiB |
|
After Width: | Height: | Size: 9.7 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 6.0 KiB |
|
After Width: | Height: | Size: 126 KiB |
|
After Width: | Height: | Size: 28 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 18 KiB |
|
After Width: | Height: | Size: 20 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 78 KiB |
|
After Width: | Height: | Size: 91 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
|
After Width: | Height: | Size: 3.3 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 3.5 KiB |
|
After Width: | Height: | Size: 2.1 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
|
After Width: | Height: | Size: 8.0 KiB |
|
After Width: | Height: | Size: 1.3 KiB |
|
After Width: | Height: | Size: 3.8 KiB |
|
After Width: | Height: | Size: 5.4 KiB |