/* Main theme color */
.slider-container .slider-controls .slider-control.active a,
.breaking-news .breaking-title,
.breaking-news .breaking-controls,
.main-content-right .panel h3,
.content-panel .panel-header b,
.page-pager > span,
.page-pager > a:hover,
.shortcode-content .spacer-break-2,
.shortcode-content .spacer-break-3,
.shortcode-content .spacer-break-4,
.shortcode-content table thead,
.shortcode-content .accordion > div > a,
.content .filter a.active,
.article-array li:before {
background-color: #264C84;
}
/* Main links color */
a {
color: #264C84;
}
/* Page title color */
.content-article-title {
border-bottom: 4px solid #264C84;
color: #264C84;
}
/* Pager border color */
.page-pager {
border-top: 1px solid #264C84;
}
/* Gallery shortcode active thumb color */
.shortcode-content .gallery-preview .gallery-thumbs li.active:before {
box-shadow: inset 0px 0px 0px 5px #264C84;
}
/* Background Color/Texture/Image */
body {
background: url(https://forexbiznes.pl/wp-content/themes/legatus-theme/images/background-texture-1.jpg);
}
.boxed {
background-image: url(https://forexbiznes.pl/wp-content/themes/legatus-theme/images/background-header.jpg);
}
/* Content text */
p {
font-size: 13px!important;
font-family: 'Arial', sans-serif;
}
/* Logo text */
.header-middle .logo-text h1 {
font-size: 55px;
font-family: 'Titillium Web', sans-serif;
}
/* Main menu text */
.header .header-menu li a {
font-size: 14px;
font-family: 'Titillium Web', sans-serif;
}
/* Article title */
.article-big-block .article-header h2, .article-small-block .article-header h2 {
font-size: 20px;
font-family: 'Titillium Web', sans-serif;
}
/* Video title */
.video-small h2 a {
font-size: 13px;
font-family: 'Titillium Web', sans-serif;
}
/* Homepage's photo gallery title */
.photo-gallery-blocks .images-content li div.article-header h2 a {
font-size: 16px;
font-family: 'Titillium Web', sans-serif;
}
/* Blog page title */
.content-article-title h2 {
font-size: 33px;
font-family: 'Titillium Web', sans-serif;
}
/* Comment username */
.comment-block .commment-content .user-nick {
margin-left: 75px;
font-family: 'Titillium Web', sans-serif;
}
/* "No comments" title */
.no-comment-block b {
font-size: 22px;
font-family: 'Titillium Web', sans-serif;
}
/* Error/succes message title */
.huge-message .big-title {
font-size: 80px;
font-family: 'Titillium Web', sans-serif;
}
/* Error/succes message second text */
.huge-message .small-title {
font-size: 40px;
font-family: 'Titillium Web', sans-serif;
}
/* Gallery Title */
.gallery-box .gallery-box-header h2 {
font-size: 17px;
font-family: 'Titillium Web', sans-serif;
}
/* Homepage's second column article title */
.article-middle-block .article-header h2 a {
font-size: 13px;
font-family: 'Titillium Web', sans-serif;
}
/* Sidebar panel title */
.main-content-right .panel h3 {
font-size: 12px;
font-family: 'Titillium Web', sans-serif;
}
/* Photo gallery title */
.panel-gallery .gallery-header b a {
font-size: 13px;
font-family: 'Titillium Web', sans-serif;
}
/* Sidebar article block title */
.article-side-block .article-header h2 a,
.article-classic .article-header h2 a {
font-size: 20px;
font-family: 'Titillium Web', sans-serif;
}
/* Floating social button likes count text */
.social-icons-float .social-icon .social-count {
font-size: 24px;
font-family: 'Titillium Web', sans-serif;
}
/* Opened post title */
.main-article-content h2.article-title {
font-size: 22px;
font-family: 'Titillium Web', sans-serif;
}
/* Calendar dates */
.main-article-content .article-controls .date .calendar-date {
font-size: 28px;
font-family: 'Titillium Web', sans-serif;
}
/* Bottom social button likes count text */
.article-share-bottom .social-icon .social-count {
font-size: 11px;
font-family: 'Titillium Web', sans-serif;
}
/* "About author" author title */
.author-content h3 {
font-size: 18px;
font-family: 'Titillium Web', sans-serif;
}
var breakingStart = true; // autostart breaking news
var breakingSpeed = 40; // breaking msg speed
var breakingScroll = [0,0,0,0,0,0,0,0,0,0];
var breakingOffset = [0,0,0,0,0,0,0,0,0,0];
var elementsToClone = [true,true,true,true,true,true,true,true,true,true];
var elementsActive = [];
var theCount = [0,0,0,0,0,0,0,0,0,0];
var _legatus_slider_timer;
// Legatus Slider Options
var _legatus_slider_autostart = true // Autostart Slider (false / true)
var _legatus_slider_interval = 5000; // Autoslide Interval (Def = 5000)
var _legatus_slider_loading = true; // Autoslide With Loading Bar (false / true)
//form validation
function validateName(fld) {
"use strict";
var error = "";
if (fld.value === '' || fld.value === 'Nickname' || fld.value === 'Enter Your Name..' || fld.value === 'Your Name..') {
error = "You didn't enter Your First Name.";
} else if ((fld.value.length < 2) || (fld.value.length > 200)) {
error = "First Name is the wrong length.";
}
return error;
}
function validateEmail(fld) {
"use strict";
var error="";
var illegalChars = /^[^@]+@[^@.]+\.[^@]*\w\w$/;
if (fld.value === "") {
error = "You didn't enter an email address.";
} else if ( fld.value.match(illegalChars) === null) {
error = "The email address contains illegal characters.";
}
return error;
}
function valName(text) {
"use strict";
var error = "";
if (text === '' || text === 'Nickname' || text === 'Enter Your Name..' || text === 'Your Name..') {
error = "You didn't enter Your First Name.";
} else if ((text.length < 2) || (text.length > 50)) {
error = "First Name is the wrong length.";
}
return error;
}
function valEmail(text) {
"use strict";
var error="";
var illegalChars = /^[^@]+@[^@.]+\.[^@]*\w\w$/;
if (text === "") {
error = "You didn't enter an email address.";
} else if ( text.match(illegalChars) === null) {
error = "The email address contains illegal characters.";
}
return error;
}
function validateMessage(fld) {
"use strict";
var error = "";
if (fld.value === '') {
error = "You didn't enter Your message.";
} else if (fld.value.length < 3) {
error = "The message is to short.";
}
return error;
}
function validatecheckbox() {
"use strict";
var error = "Please select at least one checkbox!";
return error;
}
aac 파일 다운로드
이 섹션의 파일은 단일 오디오 파일을 MPEG 계층 III 사양에 정의된 다른 샘플링 속도로 변환하여 준비되었습니다. 파일의 모노 및 스테레오 버전이 모두 제공됩니다. 파일의 비트 깊이는 16 비트입니다. 테스트를 위해 더 짧은 오디오 파일이 필요한 경우 이 섹션에서는 16초 의 오디오 트랙을 제공합니다. 아래 표는 `wav` 형식으로 변환된 오디오 파일을 여러 다른 오디오 형식으로 제공합니다. 위의 모든 파일을 포함하는 재생 목록 : FF-16b-2c-playlist.m3u 원래 음악 파일 : „분노 괴물”과 „골웨이”, 케빈 맥레오드 (incompetech.com), 크리에이티브 커먼즈에서 허가 : 저작자표시 3.0, 이 섹션의 음악 파일은 오디오 응용 프로그램의 테스트를위한 http://creativecommons.org/licenses/by/3.0/ 것입니다. 파일은 다른 형식과 샘플 비율로 구성되어 있습니다. 이 섹션의 오디오 트랙 지속 시간은 3분 7초입니다. . . .
. . . . . . . . . . .
. . . . . . . .
. . . . . . . . . .
. . . . . . . . . .
. . . .
Krzysztof Balicki
Pasjonat rynków Forex, założyciel serwisu ForexBiznes.pl
Loading..
Close Window
Loading, Please Wait!
This may take a second or two.