Advertisement
Guest User

Untitled

a guest
Jan 15th, 2017
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 41.66 KB | None | 0 0
  1.  
  2. <title>Temporary Signup Form</title>
  3. <div class="detail">
  4. <p style="text-align: center; font-size: 42px;">MySimulation</p>
  5. <script type="text/javascript">
  6. var fsoErrors = {
  7. user_short: "Username is too short. (must be >2 chars)",
  8. user_long: "Username is too long. (must be <25 chars)",
  9. user_invalid: "Username may only contain letters and numbers.",
  10. pass_required: "Please enter a password.",
  11. registrations_too_frequent: "You can only register once a day.",
  12. user_exists: "Username already exists. Please choose another!",
  13. key_wrong: "You cannot register at this time without a key!",
  14. unknown: "An unknown error occurred."
  15. };
  16.  
  17. function fsoregister() {
  18. var form = document.forms["fsoForm"];
  19. var username = form["username"].value;
  20. var password = form["password"].value;
  21. var email = form["email"].value;
  22. var http = new XMLHttpRequest();
  23. var url = "http://localhost/userapi/registration";
  24. var params = "username=" + username + "&password=" + password + "&email=" + email + "&key=38F7E3B816EF9F31BFAB8F4C9716C90D106BD85E9D6913FBB4D833C866F837B0";
  25. http.open("POST", url, true);
  26. http.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
  27. http.onreadystatechange = function() {
  28. if (http.readyState == 4 && http.status == 200) {
  29. var resp = JSON.parse(http.responseText);
  30. if (resp.error != null) showError(resp.error_description);
  31. else {
  32. var errorDisp = document.getElementById("errorDiv");
  33. errorDisp.innerHTML = "Registration successful! You can now log in ingame.";
  34. errorDisp.style.color = "#59B200";
  35. }
  36. } else if (http.readyState == 4) {
  37. showError("unknown");
  38. }
  39. };
  40. http.send(params);
  41. }
  42.  
  43. function showError(error) {
  44. var errorDisp = document.getElementById("errorDiv");
  45. errorDisp.style.color = null;
  46. errorDisp.innerHTML = fsoErrors[error];
  47. }
  48.  
  49. function passCheck() {
  50. var form = document.forms["fsoForm"];
  51. var password2 = form["password2"].value;
  52. var password = form["password"].value;
  53. form["submit"].disabled = (password.length == 0) || password != password2;
  54. if (form["submit"].disabled) {
  55. form["password2"].style.backgroundColor = "#FFCFBF";
  56. form["password"].style.backgroundColor = "#FFCFBF";
  57. } else {
  58. form["password2"].style.backgroundColor = null;
  59. form["password"].style.backgroundColor = null;
  60. }
  61. }
  62. </script>
  63. <div style="width: 400px; margin-left: auto; margin-right: auto;">
  64. <form name="fsoForm" onsubmit="fsoregister(); return false;">
  65. <div class="fsoLabel">Username <span class="required">*</span>
  66. </div>
  67. <input name="username" class="fsoInput" type="text">
  68. <br>
  69. <div class="fsoLabel">Email </div>
  70. <input name="email" class="fsoInput" type="text">
  71. <br>
  72. <div class="fsoLabel">Password <span class="required">*</span>
  73. </div>
  74. <input name="password" class="fsoInput" onkeyup="passCheck()" type="password">
  75. <br>
  76. <div class="fsoLabel">Confirm Password <span class="required">*</span>
  77. </div>
  78. <input name="password2" class="fsoInput" onkeyup="passCheck()"type="password">
  79. <br>
  80. <!--
  81. <div class="fsoLabel">Entry Key </div>
  82. <input name="key" class="fsoInput" type="text">
  83. -->
  84. <br>
  85. <div class="fsoError" id="errorDiv"></div>
  86. <div style="text-align: left; font-family: Raleway;">
  87. <input class="submitBtn" name="submit" value="Register" disabled="disabled" type="submit" onclick="fsoregister()"> </div>
  88. </form>
  89.  
  90.  
  91. </div>
  92.  
  93. </div>
  94. <style>
  95.  
  96. * {
  97. margin:0;
  98. padding:0;
  99. }
  100. ul, ol, dl, p, h1, h2, h3, h4, h5, h6, address, form, table, blockquote, applet, embed, object, iframe, frameset, mejs-container{margin:0 0 14px;}
  101. html, body, div, span, applet, embed, object, iframe, frameset,
  102. p, q, blockquote, sub, sup, a, abbr, acronym, font, img, small, center,
  103. h1, h2, h3, h4, h5, h6, b, strong, big, u, ins,
  104. i, cite, em, var, dfn, address, s, strike, del,
  105. dl, dt, dd, ol, ul, li, pre, code, kbd, samp, tt,
  106. fieldset, legend, form, label, table, caption, tbody, tfoot, thead, tr, th, td,
  107. article, aside, canvas, details, figcaption, figure, footer, header,
  108. hgroup, menu, nav, section, summary, time, mark, audio,video{
  109. border:0;
  110. background:none;
  111. }
  112. body {
  113. color:#a5a5a5;
  114. font:12px/1.2 Arial, Helvetica, sans-serif;
  115. background:#eee;
  116. min-width: 320px;
  117. }
  118. a {
  119. text-decoration:underline;
  120. color:#48c1dc;
  121. outline:none;
  122. font:400 13px/28px 'Ubuntu', sans-serif;
  123. text-decoration:none;
  124. }
  125. a:hover {text-decoration:underline;}
  126. img{
  127. max-width: 100%;
  128. height: auto;
  129. }
  130. video, iframe, object, embed{max-width: 100%;}
  131. input, textarea, select {
  132. font:100% Arial, Helvetica, sans-serif;
  133. vertical-align:middle;
  134. color:#000;
  135. overflow: auto;
  136. }
  137. input[type="text"],
  138. input[type="tel"],
  139. input[type="email"],
  140. input[type="url"],
  141. input[type="password"],
  142. input[type="search"],
  143. textarea{
  144. background:#fff;
  145. margin: 0;
  146. border:1px solid #ccc;
  147. padding:3px 4px;
  148. }
  149. label{vertical-align:middle;}
  150. button, input{
  151. width: auto;
  152. overflow: visible;
  153. }
  154. button::-moz-focus-inner{
  155. padding:0;
  156. border:0;
  157. }
  158. h1, h2, h3, h4, h5, h6, b, strong, th{font-weight:bold;}
  159. h1{font-size:200%;}
  160. h2{font-size:150%;}
  161. h3{font-size:120%;}
  162. h4{font-size:110%;}
  163. h5{font-size:100%;}
  164. h6{font-size:90%;}
  165. i, cite, em, var, dfn, address{font-style:italic;}
  166. u, ins {text-decoration: underline;}
  167. s, strike, del {text-decoration: line-through;}
  168. blockquote, blockquote:before, blockquote:after, q, q:before, q:after {quotes: none;}
  169. blockquote:before, blockquote:after, q:before, q:after {content: '';}
  170. blockquote{
  171. border-left:4px solid #ccc;
  172. padding-left:10px;
  173. margin-left:14px;
  174. }
  175. table, caption, tbody, tfoot, thead, tr, th, td{
  176. border-collapse: collapse;
  177. border-spacing: 0;
  178. }
  179. th, td{
  180. border:1px solid #ccc;
  181. padding:3px 7px;
  182. text-align:left;
  183. vertical-align:top;
  184. }
  185. th{
  186. border-color:#999;
  187. text-align:center;
  188. vertical-align:middle;
  189. font:300 17px/21px 'Ubuntu', sans-serif;
  190. color:#4f4f4f;
  191. }
  192. table td{
  193. font:300 13px/24px 'Ubuntu', sans-serif;
  194. color:#a5a5a5;
  195. }
  196. ul{ margin-left:1px; }
  197. ul, ol{ padding-left:3em; }
  198. ul ul,
  199. ul ol,
  200. ol ul,
  201. ol ol{
  202. padding-left:3em;
  203. margin:0;
  204. }
  205. ul>li{
  206. list-style-type:disc;
  207. }
  208. dl dt{
  209. float:left;
  210. clear:left;
  211. padding-right:4px;
  212. font:300 17px/21px 'Ubuntu', sans-serif;
  213. color:#4f4f4f;
  214. }
  215. .widget {margin-bottom: 14px; overflow: hidden;}
  216. .widget ul{padding-left:2em;}
  217. .widget select{min-width: 150px;}
  218. .search-form{overflow:hidden;}
  219. .comment-form textarea,
  220. .post-password-form input[type="password"],
  221. .comment-form input[type="text"],
  222. .search-form input[type="text"]{
  223. margin:0;
  224. width:300px;
  225. display: inline-block;
  226. vertical-align: top;
  227. }
  228. .post-password-form input[type="password"]{
  229. border:1px solid #e7e7e7;
  230. border-radius:5px;
  231. color:#b3b3b3;
  232. font:300 12px/15px 'Ubuntu', sans-serif;
  233. padding:10px;
  234. float:left;
  235. margin:0;
  236. width:75% !important;
  237. box-sizing:border-box;
  238. -webkit-box-sizing:border-box;
  239. -moz-box-sizing:border-box;
  240. }
  241. .post-password-form input[type="submit"]{
  242. border:1px solid #48c1dc;
  243. border-radius:5px;
  244. color:#4ac2dd;
  245. font:12px/12px 'Ubuntu', sans-serif;
  246. background:none;
  247. padding:14px 19px;
  248. transition:all 0.2s;
  249. -webkit-transition:all 0.2s;
  250. -moz-transition:all 0.2s;
  251. cursor:pointer;
  252. }
  253. .post-password-form input[type="submit"]:hover{
  254. background:#48c1dc;
  255. color:#fff;
  256. }
  257. .post-password-form {overflow: hidden;}
  258. .post-password-form label { float: left;}
  259. .post-password-form input[type="password"],
  260. .search-form input[type="text"]{
  261. width:150px;
  262. margin-bottom: 5px;
  263. }
  264. .commentlist{margin:0 0 14px;}
  265. .commentlist .edit-link{margin:0;}
  266. .commentlist-item .commentlist-item {padding:0 0 0 3em;}
  267. .comment,
  268. .commentlist-holder{overflow:hidden;}
  269. .commentlist-item .commentlist-item,
  270. .commentlist-item + .commentlist-item{padding-top:14px;}
  271. .commentlist .avatar-holder{
  272. float:left;
  273. margin:0 14px 4px 0;
  274. }
  275. .comment-form label{
  276. display:block;
  277. padding-bottom:4px;
  278. }
  279. .comment-form textarea{
  280. /* height: 150px; */
  281. margin: 0;
  282. /* max-width: 300px !important; */
  283. /* min-height: 120px; */
  284. overflow: auto;
  285. padding: 3px 4px;
  286. /* width: 300px !important; */
  287. }
  288. .gallery-item dt{
  289. float:none;
  290. padding:0;
  291. }
  292. .navigation{
  293. overflow:hidden;
  294. margin:0 0 14px;
  295. }
  296. .navigation .next{
  297. float:left;
  298. }
  299. .navigation .prev{
  300. float:right;
  301. }
  302. .wp-caption{
  303. max-width: 98%;
  304. clear:both;
  305. /* border:1px solid #ccc;
  306. padding:5px; */
  307. }
  308. .wp-caption img{vertical-align:top;}
  309. .wp-caption p{margin:10px 0 0; text-align: center;}
  310. div.aligncenter {margin: 0 auto 14px;}
  311. img.aligncenter {
  312. display: block;
  313. margin: 0 auto;
  314.  
  315. }
  316. .alignleft {
  317. float: left;
  318. margin: 0 14px 4px 0;
  319. }
  320. .alignright {
  321. float: right;
  322. margin: 0 0 4px 14px;
  323. }
  324. article, aside, details,figcaption, figure, footer, header, fgroup, menu, nav, section, main{display:block;}
  325. .widget table{
  326. table-layout: fixed;
  327. width: 100%;
  328. }
  329. #main h4{
  330. font:300 17px/21px 'Ubuntu', sans-serif;
  331. color:#4f4f4f;
  332. }
  333. #main h5{
  334. font:300 16px/20px 'Ubuntu', sans-serif;
  335. color:#4f4f4f;
  336. }
  337. #main h6{
  338. font:300 14px/18px 'Ubuntu', sans-serif;
  339. color:#4f4f4f;
  340. }
  341. /* common site style */
  342. #header{
  343. width:100%;
  344. background:#fff;
  345. box-shadow:0 2px 3px rgba(0, 0, 0, 0.14);
  346. position:relative;
  347. }
  348. .header-holder{
  349. max-width:1180px;
  350. padding:28px 10px 25px;
  351. margin:0 auto;
  352. position:relative;
  353. }
  354. .header-holder:after{
  355. display:block;
  356. clear:both;
  357. content:'';
  358. }
  359. .logo{
  360. float:left;
  361. margin:0 0 0 3px;
  362. }
  363. .logo a{float:left;}
  364. .logo img{
  365. vertical-align:top;
  366. }
  367. .logo .tagline{
  368. font:11px/13px 'Ubuntu', sans-serif;
  369. float:left;
  370. margin:10px 0 0 13px;
  371. }
  372. .open-close .opener {display: none;}
  373. .open-close div.slide {position: static !important;}
  374. #nav{
  375. float:right;
  376. }
  377. #nav ul.accordion{
  378. margin:0;
  379. padding:0;
  380. font:13px/15px 'Ubuntu', sans-serif;
  381. text-transform:capitalize;
  382. list-style:none;
  383. }
  384. #nav ul.accordion:after{
  385. content:'';
  386. display:block;
  387. clear:both;
  388. }
  389. #nav > ul.accordion > li{
  390. float:left;
  391. margin:0 0 0 31px;
  392. position:relative;
  393. list-style:none;
  394. }
  395. #nav > ul.accordion > li a:hover li{padding-bottom:10px;}
  396. #nav > ul.accordion > li > a{
  397. color:#404040;
  398. text-decoration:none;
  399. }
  400. #nav > ul.accordion > li > a:hover,
  401. #nav > ul.accordion > .active > a{
  402. color:#48cdfa;
  403. padding:0 0 20px;
  404. }
  405.  
  406. #nav > ul.accordion .sub-menu{
  407.  
  408.  
  409. /* position:absolute;
  410. top:100%;
  411. left:0; */
  412. z-index:10;
  413. background:#f9f9f9;
  414. }
  415. #nav > ul.accordion ul{padding:18px 16px 0 19px;}
  416. #nav .sub-menu li a{
  417. color:#9d9c9c;
  418. }
  419. #nav .sub-menu li a:hover{
  420. color:#48c1dc;
  421. text-decoration:none;
  422. }
  423. #nav .sub-menu li{
  424. padding:0 0 6px 9px;
  425. margin:0 0 5px;
  426. border-bottom:1px solid #f4f4f4;
  427. list-style:none;
  428. }
  429. #nav .sub-menu li:last-child{border-bottom:0;}
  430. .fa-angle-down{
  431. font-family:'FontAwesome';
  432. }
  433. /* main style */
  434. #main{
  435. width:100%;
  436. background:#eee;
  437. font:15px/27px 'Ubuntu', sans-serif;
  438. color:#6b6b6b;
  439. }
  440. #main .holder{
  441. max-width:1180px;
  442. padding:40px 10px 25px;
  443. margin:0 auto;
  444. }
  445.  
  446. /* cycle carousel basic styles */
  447. .banner{
  448. margin:0 0 39px;
  449. max-height: 460px !important;
  450. overflow: hidden;
  451. }
  452. .banner .cycle-gallery {
  453. position: relative;
  454. }
  455. .banner .cycle-gallery div.mask {
  456. position: relative;
  457. overflow: hidden;
  458. max-height: 460px;
  459. /* width: 600px; */
  460. }
  461. .banner .cycle-gallery div.mask div.slideset {
  462. width: 99999px;
  463. float: left;
  464. }
  465. .banner .cycle-gallery div.mask div.slide {
  466. /* width: 600px; */
  467. float: left;
  468. max-height: 460px;
  469. }
  470. .banner .cycle-gallery div.mask div.slide.active {
  471. z-index: 1;
  472. }
  473. .banner .cycle-gallery div.mask div.slide img{
  474. width:100%;
  475. height:auto;
  476. vertical-align:top;
  477. }
  478. .banner-text{
  479. position:absolute;
  480. background:#eee;
  481. left:0;
  482. bottom: 38px;
  483. font:300 15px/30px 'Ubuntu', sans-serif;
  484. color:#6b6b6b;
  485. max-width:500px;
  486. padding:24px 2.5% 1px;
  487. }
  488. .banner-text .title{
  489. font:300 23px/27px 'Ubuntu', sans-serif;
  490. color:#4f4f4f;
  491. display:block;
  492. margin:0 0 5px;
  493. }
  494. .banner-text p{margin:0 0 10px;}
  495. #main .banner .pagination{
  496. position:absolute;
  497. bottom:29px;
  498. width:100%;
  499. text-align:center;
  500. z-index:10;
  501. }
  502. #main .banner .pagination ul{
  503. margin:0;
  504. padding:0;
  505. }
  506. #main .banner .pagination ul li{
  507. display:inline-block;
  508. vertical-align:top;
  509. margin:0 9px;
  510. }
  511. #main .banner .pagination ul li a{
  512. display:block;
  513. width:12px;
  514. height:12px;
  515. border:3px solid #fff;
  516. border-radius:50%;
  517. text-indent:-9999px;
  518. }
  519. #main .banner .pagination ul li a:hover,
  520. #main .banner .pagination ul .active a{
  521. background:#eee;
  522. border:3px solid #eee;
  523. }
  524. #main .banner .pagination ul li a:focus{outline: none;}
  525. /* content style */
  526. #main .content-holder{
  527. overflow:hidden;
  528. }
  529. #content{
  530. float:left;
  531. width:66.1%;
  532. }
  533. #content .post{
  534. background:#fff;
  535. margin:0 0 30px;
  536. }
  537. #content .post .heading{padding:34px 39px 0px 39px;}
  538. #content .post .info{
  539. overflow:hidden;
  540. font:300 12px/24px 'Ubuntu', sans-serif;
  541. color:#a5a5a5;
  542. }
  543. #content .post .info time{
  544. padding:0 0 0 20px;
  545. margin:0 17px 0 0;
  546. background:url(../images/bg-time.png) no-repeat;
  547. }
  548. #content .post .info .category{
  549. padding:0 0 0 22px;
  550. margin:0 20px 0 0;
  551. background:url(../images/bg-category.png) no-repeat;
  552. }
  553. #content .post .info .commets{
  554. padding:0 0 0 23px;
  555. background:url(../images/bg-comment.png) no-repeat;
  556. color:#a5a5a5;
  557. text-decoration:none;
  558. }
  559. #content .post .info .commets:hover{text-decoration:underline;}
  560. #content .post .img-holder img{
  561. width:100%;
  562. height:auto;
  563. vertical-align:top;
  564. }
  565. #content .post .detail{
  566. padding:20px 37px 36px 40px;
  567. font-weight: 300;
  568. line-height: 30px;
  569. }
  570. #content .post .detail .btn-holder{
  571. overflow:hidden;
  572. }
  573. #main p{margin:0 0 12px;}
  574.  
  575. #main h1{
  576. font:300 27px/31px 'Ubuntu', sans-serif;
  577. color:#4f4f4f;
  578. margin:0;
  579. }
  580. #main h1, #main h2, #main h3, #main h4, #main h5, #main h6 {
  581. margin: 0 0 0px;
  582. }
  583. #main h1 a:hover{
  584. text-decoration: none;
  585. color: #48c1dc;
  586.  
  587. }
  588. #main .readmore{
  589. font:300 12px/24px 'Ubuntu', sans-serif;
  590. color:#4f4f4f;
  591. text-decoration:none;
  592. text-transform:uppercase;
  593. border:1px solid #929292;
  594. padding:6px 26px;
  595. float:left;
  596. border-radius:5px;
  597. }
  598. #main .readmore:hover{
  599. background:#48c1dc;
  600. border:1px solid #48c1dc;
  601. color:#fff;
  602. }
  603. #content .post .detail .btn-holder2{
  604. float:right;
  605. }
  606. #main .like{
  607. float:left;
  608. font:300 12px/24px 'Ubuntu', sans-serif;
  609. color:#f75469;
  610. border:1px solid #f75469;
  611. text-decoration:none;
  612. border-radius:5px;
  613. padding:6px 16px 7px 16px
  614. }
  615. #main .like:hover{
  616. background:#f75469;
  617. border:1px solid #f75469;
  618. color:#fff;
  619. }
  620. #main .like:hover .fa-heart{color:#fff;}
  621. #main .heading .like{float:right;}
  622. #main .fa-heart{
  623. font-family:'FontAwesome';
  624. color:#f75469;
  625. }
  626. #main .share{
  627. float:left;
  628. font:300 12px/24px 'Ubuntu', sans-serif;
  629. color:#4ac2dd;
  630. border:1px solid #4ac2dd;
  631. text-decoration:none;
  632. border-radius:5px;
  633. padding:6px 20px 7px 14px;
  634. margin:0 0 0 10px;
  635. }
  636. #main .share:hover{
  637. background:#4ac2dd;
  638. border:1px solid #4ac2dd;
  639. color:#fff;
  640. }
  641. #main .share:hover .fa-share-alt{color:#fff;}
  642. #main .fa-share-alt{
  643. font-family:'FontAwesome';
  644. color:#4ac2dd;
  645. margin:0 0 0 5px;
  646. }
  647. #main #content ul.page-numbers{
  648. margin:0 0 10px;
  649. padding:0;
  650. overflow:hidden;
  651. font:300 12px/38px 'Ubuntu', sans-serif;
  652. }
  653. #main #content ul.page-numbers li{
  654. float:left;
  655. margin:0 0 0 11px;
  656. list-style:none;
  657. }
  658. #main #content ul.page-numbers li:first-child{margin:0;}
  659. #main #content ul.page-numbers li a{
  660. display:block;
  661. background:#f7f7f7;
  662. border:1px solid #bbb;
  663. color:#b8b8b8;
  664. text-decoration:none;
  665. padding:5px 15px;
  666. border-radius:5px;
  667. }
  668. #main #content ul.page-numbers li a:hover,
  669. #main #content ul.page-numbers .active a{
  670. background:#fff;
  671. color:#4f4f4f;
  672. }
  673.  
  674. .page-numbers.current,
  675. .page-numbers.current:hover {
  676. background:#fff;
  677. color:#4f4f4f;
  678. display:block;
  679. border:1px solid #bbb;
  680. text-decoration:none;
  681. padding:1px 15px;
  682. border-radius:5px;
  683.  
  684. }
  685. /* sidebar style */
  686. #secondary .widget{
  687. background: #fff;
  688. padding: 20px;
  689. }
  690. #secondary .widget.widget_search .search-form{
  691. width: 100%;
  692. border: 1px solid #ccc;
  693. border-radius: 5px;
  694. padding: 5px 10px;
  695. -webkit-box-sizing: border-box;
  696. -moz-box-sizing: border-box;
  697. box-sizing: border-box;
  698. }
  699. #secondary .widget.widget_search .search-form input[type="search"]{
  700. border: 0;
  701. border-radius: 0;
  702. }
  703. #secondary .widget_rara_recent_post ul li{overflow: hidden;}
  704. #secondary .widget_rara_recent_post ul li .post-thumbnail{
  705. float: left;
  706. width: 75px;
  707. margin-right: 22px;
  708. margin-top: 8px;
  709. }
  710. #secondary .widget_rara_recent_post ul li .entry-header{overflow: hidden;}
  711. #secondary .widget_rara_recent_post ul li .entry-header .entry-title{margin: 0 !important;}
  712. #secondary .widget_rara_recent_post ul li .entry-header .entry-title a{
  713. font-size: 18px;
  714. line-height: 22px;
  715. font-weight: 300;
  716. color: #6b6b6b;
  717. }
  718. #secondary .widget_rara_recent_post ul li .entry-header .entry-title a:hover{color: #48c1dc;}
  719. #sidebar{
  720. width:29.6%;
  721. float:right;
  722. }
  723. #sidebar .search-block{
  724. background:#fff;
  725. padding:29px 8% 17px 8%;
  726. margin:0 0 1px;
  727. overflow:hidden;
  728. }
  729. .search-form{
  730. overflow:hidden;
  731. }
  732. .search-form input[type="text"]{
  733. border:1px solid #b3b3b3;
  734. font:300 12px/15px 'Ubuntu', sans-serif;
  735. color:#b3b3b3;
  736. float:left;
  737. margin:0;
  738. padding:11px 16px 10px;
  739. width:69%;
  740. border-top-left-radius:5px;
  741. border-bottom-left-radius:5px;
  742. border-right:0;
  743. }
  744. .search-form input[type="submit"]{
  745. margin:0;
  746. padding:0;
  747. float:left;
  748. background:#48c1dc url(../images/bg-search.png) no-repeat 50% 50%;
  749. text-indent:-9999px;
  750. overflow:hidden;
  751. border:0;
  752. padding:17px 0 11px;
  753. border-top-right-radius:5px;
  754. border-bottom-right-radius:5px;
  755. cursor:pointer;
  756. width:17%;
  757. }
  758. .search-form input[type="submit"]:hover{
  759. background:#f75469 url(../images/bg-search.png) no-repeat 50% 50%;
  760. }
  761. #sidebar .subscribe-block{
  762. background:#fff;
  763. padding:30px 8% 32px;
  764. margin:0 0 43px;
  765. overflow:hidden;
  766. }
  767. .subscribe-form{overflow:hidden;}
  768. .subscribe-form input[type="text"]{
  769. border:1px solid #b3b3b3;
  770. font:300 12px/15px 'Ubuntu', sans-serif;
  771. color:#b3b3b3;
  772. float:left;
  773. margin:0;
  774. padding:11px 16px 10px;
  775. width:45%;
  776. border-top-left-radius:5px;
  777. border-bottom-left-radius:5px;
  778. border-right:0;
  779. }
  780. .subscribe-form input[type="submit"] {
  781. margin: -2px;
  782. padding: 0;
  783. float: left;
  784. background: #48c1dc;
  785. overflow: hidden;
  786. border: 0;
  787. padding: 18px 0 11px;
  788. border-top-right-radius: 5px;
  789. border-bottom-right-radius: 5px;
  790. cursor: pointer;
  791. color: #fff;
  792. width: 41%;
  793. }
  794. .subscribe-form input[type="submit"]:hover{
  795. background:#f75469;
  796. }
  797. #main h3{
  798. font:300 19px/23px 'Ubuntu', sans-serif;
  799. color:#4f4f4f;
  800. margin:35px 0 10px;
  801. }
  802. #main #sidebar h3 {
  803. margin: 0 0 20px;
  804. }
  805. #main h4, #main h5, #main h6 {
  806. margin:35px 0 10px;
  807. }
  808. #sidebar .widget ul{
  809. padding:0;
  810. margin-left: 0;
  811. margin-bottom: 0px;
  812. }
  813. /* three-columns style */
  814. .three-columns{
  815. background:#fff;
  816. width:100%;
  817. }
  818. #main .three-columns .holder{
  819. max-width:1180px;
  820. padding:54px 10px 25px;
  821. margin:0 auto;
  822. overflow:hidden;
  823. }
  824. #main h2{
  825. font:300 23px/27px 'Ubuntu', sans-serif;
  826. color:#4f4f4f;
  827. margin:35 0 10px;
  828. }
  829. .three-columns .column{
  830. float:left;
  831. width:29%;
  832. margin:0 0 0 6.2%;
  833. }
  834. .three-columns .column:first-child{margin:0;}
  835. /* inner-page style */
  836. .content-images{
  837. overflow:hidden;
  838. margin: 0 0 22px;
  839. text-align:center;
  840. }
  841. .content-images .left-image {
  842. float:left;
  843. margin:0 0 22px;
  844. width:49%;
  845. }
  846. .content-images .right-image {
  847. float:right;
  848. margin:0 0 22px;
  849. width:49%;
  850. }
  851. .content-images img{
  852. width:100%;
  853. height:auto;
  854. vertical-align:top;
  855. }
  856. .about-author{
  857. background:#fff;
  858. padding:31px 37px 31px 40px;
  859. margin:0 0 30px;
  860. }
  861. .share-block{
  862. margin:0 0 30px;
  863. background:#fff;
  864. padding:31px 37px 31px 40px;
  865. }
  866. #main .about-author h2,
  867. #main .share-block h2{margin:0 0 27px;}
  868. .comment-box{
  869. background:#fff;
  870. padding:31px 37px 31px 40px;
  871. margin:0 0 30px;
  872. }
  873. #main .comment-box h2{
  874. margin:0 0 18px;
  875. }
  876. .comment-form{
  877. /* overflow:hidden; */
  878. }
  879. .comment-form .row{
  880. margin:0 0 21px;
  881. }
  882. .comment-form .row:after{
  883. content:'';
  884. display:block;
  885. clear:both;
  886. }
  887. .comment-form .left-input{
  888. float:left;
  889. width:49%;
  890. }
  891. .comment-form .right-input{
  892. float:right;
  893. width:49%;
  894. }
  895. .comment-form input[type="text"]{
  896. border:1px solid #e7e7e7;
  897. border-radius:5px;
  898. color:#b3b3b3;
  899. font:300 12px/15px 'Ubuntu', sans-serif;
  900. padding:10px;
  901. float:left;
  902. margin:0;
  903. width:100%;
  904. box-sizing:border-box;
  905. -webkit-box-sizing:border-box;
  906. -moz-box-sizing:border-box;
  907. }
  908. .comment-form input[type="email"],
  909. .comment-form input[type="url"]{
  910. border:1px solid #e7e7e7;
  911. border-radius:5px;
  912. color:#b3b3b3;
  913. font:300 12px/15px 'Ubuntu', sans-serif;
  914. padding:10px;
  915. float:right;
  916. margin:0;
  917. width:100%;
  918. box-sizing:border-box;
  919. -webkit-box-sizing:border-box;
  920. -moz-box-sizing:border-box;
  921. }
  922. .comment-form textarea{
  923. float:left;
  924. margin:0;
  925. padding:10px;
  926. border:1px solid #e7e7e7;
  927. border-radius:5px;
  928. color:#b3b3b3;
  929. font:300 12px/15px 'Ubuntu', sans-serif;
  930. height:77px !important;
  931. width:100% !important;
  932. box-sizing:border-box;
  933. -webkit-box-sizing:border-box;
  934. -moz-box-sizing:border-box;
  935. resize:none;
  936. }
  937. .comment-form input[type="submit"]{
  938. border:1px solid #48c1dc;
  939. border-radius:5px;
  940. color:#4ac2dd;
  941. font:15px/18px 'Ubuntu', sans-serif;
  942. background:none;
  943. padding:14px 19px;
  944. transition:all 0.2s;
  945. -webkit-transition:all 0.2s;
  946. -moz-transition:all 0.2s;
  947. cursor:pointer;
  948. box-shadow: none;
  949. text-shadow: none;
  950. }
  951. .comment-form input[type="submit"]:hover{
  952. background:#48c1dc;
  953. color:#fff;
  954. }
  955. .comment-form .error-msg{
  956. display:block;
  957. position:relative;
  958. margin:-24px 0 0;
  959. font:300 12px/12px 'Ubuntu', sans-serif;
  960. color:#ca9090;
  961. }
  962. .comment-form input.error-msg{
  963. border:1px solid #ca9090;
  964. }
  965. #content.no-sidebar{
  966. width:100%;
  967. }
  968. /* footer style */
  969. #footer{
  970. background:#48c1dc;
  971. }
  972. #footer .holder{
  973. max-width:1180px;
  974. padding:22px 10px 27px;
  975. font:300 14px/17px 'Ubuntu', sans-serif;
  976. color:#fff;
  977. margin:0 auto;
  978. text-align:center;
  979. }
  980. #footer a{color:#fff;}
  981. #footer p{margin:0;}
  982. @media only screen and (min-width:1024px){
  983. /* #nav li:hover .sub-menu{
  984. display:block !important;
  985. } */
  986. .fa-angle-down{display:none;}
  987. }
  988. @media only screen and (min-width:991px) {
  989. #nav li:hover .sub-menu{
  990. display:block !important;
  991. }
  992. #nav .sub-menu{
  993. left:-55px !important;
  994. top:134% !important;
  995. width:162px !important;
  996. display:none !important;
  997. position:absolute !important;
  998. box-shadow:0 1px 5px rgba(0, 0, 0, 0.38);
  999. border-radius:5px;
  1000. }
  1001. #nav .sub-menu:after{
  1002. width: 0;
  1003. height: 0;
  1004. border-left: 10px solid transparent;
  1005. border-right: 10px solid transparent;
  1006. border-bottom: 10px solid #F9F9F9;
  1007. content:'';
  1008. position:absolute;
  1009. top:-10px;
  1010. left:70px;
  1011. }
  1012. }
  1013. @media only screen and (max-width:1064px){
  1014. #nav > ul.accordion > li{margin:0 0 0 21px;}
  1015. }
  1016. @media only screen and (max-width:991px){
  1017. .open-close{
  1018. float:right;
  1019. }
  1020. .open-close .opener{
  1021. position:absolute !important;
  1022. top:30px;
  1023. right:30px;
  1024. background:url(../images/bg-menu.png) no-repeat;
  1025. width: 25px;
  1026. height: 15px;
  1027. text-indent:-9999px;
  1028. overflow:hidden;
  1029. display:block;
  1030. z-index:9999;
  1031. }
  1032. .open-close div.slide{
  1033. position:absolute !important;
  1034. display:none;
  1035. top:110px;
  1036. left:0;
  1037. width:100%;
  1038. z-index:9999;
  1039. }
  1040. .open-close div.slide{top:82px;}
  1041. #nav{
  1042. width:100%;
  1043. text-align:center;
  1044. background:#fff;
  1045. }
  1046. #nav > ul.accordion > li{
  1047. float:none;
  1048. margin:0 0 10px;
  1049. }
  1050. #content,
  1051. #sidebar{
  1052. width:100%;
  1053. margin:0 0 20px;
  1054. }
  1055. .three-columns .column{
  1056. width:100%;
  1057. margin:0 0 20px;
  1058. }
  1059. }
  1060. @media only screen and (max-width:780px){
  1061. .content-images .left-image,
  1062. .content-images .right-image {
  1063. float:none;
  1064. width:100%;
  1065. }
  1066. }
  1067. @media only screen and (max-width:767px){
  1068. .comment-form .left-input{
  1069. width:100%;
  1070. margin:0 0 35px;
  1071. }
  1072. .comment-form .right-input{
  1073. width:100%;
  1074. }
  1075. .banner-text {
  1076. bottom: 65px;
  1077. }
  1078. }
  1079. @media only screen and (max-width:580px){
  1080. #main .readmore{
  1081. float:none;
  1082. display:inline-block;
  1083. }
  1084. #content .post .detail .btn-holder2{
  1085. float:none;
  1086. display:inline-block;
  1087. }
  1088. #content .post .detail .btn-holder1{margin:0 0 15px;}
  1089. #content .post .detail .btn-holder{
  1090. text-align:center;
  1091. }
  1092. #main h1{
  1093. font-size:20px;
  1094. line-height:24px;
  1095. }
  1096. .banner-text p{display:none;}
  1097. .banner-text .title{
  1098. font-size:15px;
  1099. line-height:18px;
  1100. }
  1101. .banner-text{padding-top:9px;}
  1102. .logo .tagline{
  1103. position:relative;
  1104. bottom:0;
  1105. left:-16px;
  1106. }
  1107. }
  1108.  
  1109. .widget ul li a {
  1110. font:400 15px/28px 'Ubuntu', sans-serif;
  1111. color: #48c1dc;
  1112. text-decoration: none;
  1113. outline: none;
  1114. }
  1115. .widget ul li {
  1116. list-style-type: none;
  1117. /* margin-left: -36px; */
  1118. }
  1119. .btn-holder1 {
  1120. float: right;
  1121. }
  1122. #content .post .img-holder {
  1123. margin-top: 10px;
  1124. }
  1125. .widgets-list-layout-links {
  1126. width: 84% !important;
  1127. }
  1128. #content .post .img-holder{
  1129. max-height:400px;
  1130. overflow:hidden;
  1131. }
  1132. #main .three-columns .widget ul{margin-left:0 !important}
  1133. div#jp-relatedposts div.jp-relatedposts-items-visual .jp-relatedposts-post {
  1134. opacity: 1!important;
  1135. }
  1136. /* div#jp-relatedposts div.jp-relatedposts-items div.jp-relatedposts-post:hover{
  1137. opacity: 0.3 !important;
  1138. }
  1139. */
  1140. #wpstats {display: none;}
  1141. .comment-form-comment:after{
  1142. content: '';
  1143. display: block;
  1144. clear: both;
  1145. }
  1146.  
  1147.  
  1148.  
  1149.  
  1150. /*
  1151. Theme Name: Rara Clean
  1152. Theme URI: http://raratheme.com/theme/rara-clean/
  1153. Author: Rara Theme
  1154. Author URI: http://www.raratheme.com/
  1155. Description: Rara Clean is a simple and clean WordPress blog theme. It is responsive and adopts to various screen sizes, ensuring that your content is perfectly displayed to the visitors using tablets and mobile devices. If you are looking for a clean and professional blog theme that compliments your visuals and also provides you ample space for text, Rara Clean is perfect for you. Along with the clean design the theme comes with Theme Options and includes featured Slider to highlight your posts and pages. It also has 3 widgets under the main content. This theme is translation ready and is currently translated in Russian, Chinese, French, Danish, Portuguese, Dutch, German and Spanish. Check out Theme Demo at http://demo.raratheme.com/rara-clean/
  1156. Version: 1.7
  1157. License: GNU General Public License v2 or later
  1158. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  1159. Tags: custom-menu, full-width-template, right-sidebar, light, photoblogging, responsive-layout, theme-options, translation-ready, sticky-post, two-columns
  1160. Text Domain: rara-clean
  1161.  
  1162. This theme, like WordPress, is licensed under the GPL.
  1163. Use it to make something cool, have fun, and share what you've learned with others.
  1164. */
  1165.  
  1166. /*--------------------------------------------------------------
  1167. Reset code
  1168. --------------------------------------------------------------*/
  1169.  
  1170. html, body, div, span, applet, object, iframe,
  1171. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  1172. a, abbr, acronym, address, big, cite, code,
  1173. del, dfn, em, font, ins, kbd, q, s, samp,
  1174. small, strike, strong, sub, sup, tt, var,
  1175. dl, dt, dd, ol, ul, li,
  1176. fieldset, form, label, legend,
  1177. table, caption, tbody, tfoot, thead, tr, th, td {
  1178. border: 0;
  1179. font-family: inherit;
  1180. font-size: 100%;
  1181. font-style: inherit;
  1182. font-weight: inherit;
  1183. margin: 0;
  1184. outline: 0;
  1185. padding: 0;
  1186. vertical-align: baseline;
  1187. }
  1188.  
  1189. html {
  1190. font-size: 62.5%;
  1191. overflow-y: scroll;
  1192. -webkit-text-size-adjust: 100%;
  1193. box-sizing: border-box;
  1194. }
  1195. *,
  1196. *:before,
  1197. *:after {
  1198. box-sizing: inherit;
  1199. }
  1200.  
  1201. body {
  1202. background: #fff;
  1203. }
  1204.  
  1205. article,
  1206. aside,
  1207. details,
  1208. figcaption,
  1209. figure,
  1210. footer,
  1211. header,
  1212. main,
  1213. nav,
  1214. section {
  1215. display: block;
  1216. }
  1217.  
  1218. ol,
  1219. ul {
  1220. list-style: none;
  1221. }
  1222.  
  1223. table {
  1224. border-collapse: separate;
  1225. border-spacing: 0;
  1226. }
  1227.  
  1228. caption,
  1229. th,
  1230. td {
  1231. font-weight: normal;
  1232. text-align: left;
  1233. }
  1234. blockquote:before,
  1235. blockquote:after,
  1236. q:before,
  1237. q:after {
  1238. content: "";
  1239. }
  1240.  
  1241. blockquote,
  1242. q {
  1243. quotes: "" "";
  1244. }
  1245.  
  1246. a:focus {
  1247. outline: thin dotted;
  1248. }
  1249.  
  1250. a:hover,
  1251. a:active {
  1252. outline: 0;
  1253. }
  1254.  
  1255. a img {
  1256. border: 0;
  1257. }
  1258.  
  1259. /*--------------------------------------------------------------
  1260. Typography
  1261. --------------------------------------------------------------*/
  1262. body,
  1263. button,
  1264. input,
  1265. select,
  1266. textarea {
  1267. color: #404040;
  1268. font-family: sans-serif;
  1269. font-size: 16px;
  1270. font-size: 1.6rem;
  1271. line-height: 1.5;
  1272. }
  1273.  
  1274. h1,
  1275. h2,
  1276. h3,
  1277. h4,
  1278. h5,
  1279. h6 {
  1280. clear: both;
  1281. }
  1282.  
  1283. p {
  1284. margin-bottom: 1.5em;
  1285. }
  1286.  
  1287. b,
  1288. strong {
  1289. font-weight: bold;
  1290. }
  1291.  
  1292. dfn,
  1293. cite,
  1294. em,
  1295. i {
  1296. font-style: italic;
  1297. }
  1298.  
  1299. blockquote {
  1300. margin: 0 1.5em;
  1301. }
  1302.  
  1303. address {
  1304. margin: 0 0 1.5em;
  1305. }
  1306.  
  1307. pre {
  1308. background: #eee;
  1309. font-family: "Courier 10 Pitch", Courier, monospace;
  1310. font-size: 15px;
  1311. font-size: 1.5rem;
  1312. line-height: 1.6;
  1313. margin-bottom: 1.6em;
  1314. max-width: 100%;
  1315. overflow: auto;
  1316. padding: 1.6em;
  1317. }
  1318.  
  1319. code,
  1320. kbd,
  1321. tt,
  1322. var {
  1323. font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  1324. font-size: 15px;
  1325. font-size: 1.5rem;
  1326. }
  1327.  
  1328. abbr,
  1329. acronym {
  1330. border-bottom: 1px dotted #666;
  1331. cursor: help;
  1332. }
  1333.  
  1334. mark,
  1335. ins {
  1336. background: #fff9c0;
  1337. text-decoration: none;
  1338. }
  1339.  
  1340. sup,
  1341. sub {
  1342. font-size: 75%;
  1343. height: 0;
  1344. line-height: 0;
  1345. position: relative;
  1346. vertical-align: baseline;
  1347. }
  1348.  
  1349. sup {
  1350. bottom: 1ex;
  1351. }
  1352.  
  1353. sub {
  1354. top: .5ex;
  1355. }
  1356.  
  1357. small {
  1358. font-size: 75%;
  1359. }
  1360.  
  1361. big {
  1362. font-size: 125%;
  1363. }
  1364.  
  1365. /*--------------------------------------------------------------
  1366. Elements
  1367. --------------------------------------------------------------*/
  1368. hr {
  1369. background-color: #ccc;
  1370. border: 0;
  1371. height: 1px;
  1372. margin-bottom: 1.5em;
  1373. }
  1374.  
  1375.  
  1376.  
  1377.  
  1378.  
  1379. ol,
  1380. ul {
  1381. list-style: none;
  1382. }
  1383.  
  1384. table {
  1385. border-collapse: separate;
  1386. border-spacing: 0;
  1387. }
  1388.  
  1389. caption,
  1390. th,
  1391. td {
  1392. font-weight: normal;
  1393. text-align: left;
  1394. }
  1395. blockquote:before,
  1396. blockquote:after,
  1397. q:before,
  1398. q:after {
  1399. content: "";
  1400. }
  1401.  
  1402. blockquote,
  1403. q {
  1404. quotes: "" "";
  1405. }
  1406.  
  1407. a:focus {
  1408. outline: thin dotted;
  1409. }
  1410.  
  1411. a:hover,
  1412. a:active {
  1413. outline: 0;
  1414. }
  1415.  
  1416. a img {
  1417. border: 0;
  1418. }
  1419.  
  1420. /*--------------------------------------------------------------
  1421. Typography
  1422. --------------------------------------------------------------*/
  1423. body,
  1424. button,
  1425. input,
  1426. select,
  1427. textarea {
  1428. color: #404040;
  1429. font-family: sans-serif;
  1430. font-size: 16px;
  1431. font-size: 1.6rem;
  1432. line-height: 1.5;
  1433. }
  1434.  
  1435. h1,
  1436. h2,
  1437. h3,
  1438. h4,
  1439. h5,
  1440. h6 {
  1441. clear: both;
  1442. }
  1443.  
  1444. p {
  1445. margin-bottom: 1.5em;
  1446. }
  1447.  
  1448. b,
  1449. strong {
  1450. font-weight: bold;
  1451. }
  1452.  
  1453. dfn,
  1454. cite,
  1455. em,
  1456. i {
  1457. font-style: italic;
  1458. }
  1459.  
  1460. blockquote {
  1461. margin: 0 1.5em;
  1462. }
  1463.  
  1464. address {
  1465. margin: 0 0 1.5em;
  1466. }
  1467.  
  1468. pre {
  1469. background: #eee;
  1470. font-family: "Courier 10 Pitch", Courier, monospace;
  1471. font-size: 15px;
  1472. font-size: 1.5rem;
  1473. /*line-height: 1px;*/
  1474. margin-bottom: 1.6em;
  1475. max-width: 100%;
  1476. overflow: auto;
  1477. padding: 1.6em;
  1478. }
  1479.  
  1480. code,
  1481. kbd,
  1482. tt,
  1483. var {
  1484. font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  1485. font-size: 15px;
  1486. font-size: 1.5rem;
  1487. }
  1488.  
  1489. abbr,
  1490. acronym {
  1491. border-bottom: 1px dotted #666;
  1492. cursor: help;
  1493. }
  1494.  
  1495. mark,
  1496. ins {
  1497. background: #fff9c0;
  1498. text-decoration: none;
  1499. }
  1500.  
  1501. sup,
  1502. sub {
  1503. font-size: 75%;
  1504. height: 0;
  1505. line-height: 0;
  1506. position: relative;
  1507. vertical-align: baseline;
  1508. }
  1509.  
  1510. sup {
  1511. bottom: 1ex;
  1512. }
  1513.  
  1514. sub {
  1515. top: .5ex;
  1516. }
  1517.  
  1518. small {
  1519. font-size: 75%;
  1520. }
  1521.  
  1522. big {
  1523. font-size: 125%;
  1524. }
  1525.  
  1526. /*--------------------------------------------------------------
  1527. Elements
  1528. --------------------------------------------------------------*/
  1529. hr {
  1530. background-color: #ccc;
  1531. border: 0;
  1532. height: 1px;
  1533. margin-bottom: 1.5em;
  1534. }
  1535.  
  1536. ul,
  1537. ol {
  1538. margin: 0 0 1.5em 3em;
  1539. }
  1540.  
  1541. ul {
  1542. list-style: disc;
  1543. }
  1544.  
  1545. ol {
  1546. list-style: decimal;
  1547. }
  1548.  
  1549. li > ul,
  1550. li > ol {
  1551. margin-bottom: 0;
  1552. margin-left: 1.5em;
  1553. }
  1554.  
  1555. dt {
  1556. font-weight: bold;
  1557. }
  1558.  
  1559. dd {
  1560. margin: 0 1.5em 1.5em;
  1561. }
  1562.  
  1563. img {
  1564. height: auto;
  1565. max-width: 100%;
  1566. }
  1567.  
  1568. figure {
  1569. margin: 0;
  1570. }
  1571.  
  1572. table {
  1573. margin: 0 0 1.5em;
  1574. width: 100%;
  1575. }
  1576.  
  1577. th {
  1578. font-weight: bold;
  1579. }
  1580.  
  1581. /*--------------------------------------------------------------
  1582. Forms
  1583. --------------------------------------------------------------*/
  1584. button,
  1585. input,
  1586. select,
  1587. textarea {
  1588. font-size: 100%;
  1589. margin: 0;
  1590. vertical-align: baseline;
  1591. }
  1592.  
  1593. button,
  1594. input[type="button"],
  1595. input[type="reset"],
  1596. input[type="submit"] {
  1597. border: 1px solid;
  1598. border-color: #ccc #ccc #bbb;
  1599. border-radius: 3px;
  1600. background: #e6e6e6;
  1601. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
  1602. color: rgba(0, 0, 0, .8);
  1603. cursor: pointer;
  1604. -webkit-appearance: button;
  1605. font-size: 12px;
  1606. font-size: 1.2rem;
  1607. line-height: 1;
  1608. padding: .6em 1em .4em;
  1609. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  1610. }
  1611.  
  1612. /* button:hover,
  1613. input[type="button"]:hover,
  1614. input[type="reset"]:hover,
  1615. input[type="submit"]:hover {
  1616. border-color: #ccc #bbb #aaa;
  1617. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
  1618. } */
  1619.  
  1620. /* button:focus,
  1621. input[type="button"]:focus,
  1622. input[type="reset"]:focus,
  1623. input[type="submit"]:focus,
  1624. button:active,
  1625. input[type="button"]:active,
  1626. input[type="reset"]:active,
  1627. input[type="submit"]:active {
  1628. border-color: #aaa #bbb #bbb;
  1629. box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
  1630. }
  1631. */
  1632. input[type="checkbox"],
  1633. input[type="radio"] {
  1634. padding: 0;
  1635. }
  1636.  
  1637. input[type="search"] {
  1638. -webkit-appearance: textfield;
  1639. box-sizing: content-box;
  1640. }
  1641.  
  1642. input[type="search"]::-webkit-search-decoration {
  1643. -webkit-appearance: none;
  1644. }
  1645.  
  1646. input[type="text"],
  1647. input[type="email"],
  1648. input[type="url"],
  1649. input[type="password"],
  1650. input[type="search"],
  1651. textarea {
  1652. color: #666;
  1653. border: 1px solid #ccc;
  1654. border-radius: 3px;
  1655. }
  1656.  
  1657. input[type="text"]:focus,
  1658. input[type="email"]:focus,
  1659. input[type="url"]:focus,
  1660. input[type="password"]:focus,
  1661. input[type="search"]:focus,
  1662. textarea:focus {
  1663. color: #111;
  1664. }
  1665.  
  1666. input[type="text"],
  1667. input[type="email"],
  1668. input[type="url"],
  1669. input[type="password"],
  1670. input[type="search"] {
  1671. padding: 3px;
  1672. }
  1673.  
  1674. textarea {
  1675. overflow: auto;
  1676. padding-left: 3px;
  1677. vertical-align: top;
  1678. width: 100%;
  1679. }
  1680.  
  1681. /*--------------------------------------------------------------
  1682. Navigation
  1683. --------------------------------------------------------------*/
  1684.  
  1685. .main-navigation {
  1686. clear: both;
  1687. display: block;
  1688. float: left;
  1689. width: 100%;
  1690. }
  1691.  
  1692.  
  1693. .main-navigation ul {
  1694. list-style: none;
  1695. margin: 0;
  1696. padding-left: 0;
  1697. }
  1698.  
  1699. .main-navigation li {
  1700. float: left;
  1701. position: relative;
  1702. }
  1703.  
  1704. .main-navigation a {
  1705. display: block;
  1706. text-decoration: none;
  1707. }
  1708.  
  1709. .main-navigation ul ul {
  1710. box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  1711. float: left;
  1712. position: absolute;
  1713. top: 1.5em;
  1714. left: -999em;
  1715. z-index: 99999;
  1716. }
  1717.  
  1718. .main-navigation ul ul ul {
  1719. left: -999em;
  1720. top: 0;
  1721. }
  1722.  
  1723. .main-navigation ul ul a {
  1724. width: 200px;
  1725. }
  1726.  
  1727. .main-navigation ul ul li {
  1728.  
  1729. }
  1730.  
  1731. .main-navigation li:hover > a {
  1732. }
  1733.  
  1734. .main-navigation ul ul :hover > a {
  1735. }
  1736.  
  1737. .main-navigation ul ul a:hover {
  1738. }
  1739.  
  1740. .main-navigation ul li:hover > ul {
  1741. left: auto;
  1742. }
  1743.  
  1744. .main-navigation ul ul li:hover > ul {
  1745. left: 100%;
  1746. }
  1747.  
  1748. .main-navigation .current_page_item > a,
  1749. .main-navigation .current-menu-item > a,
  1750. .main-navigation .current_page_ancestor > a {
  1751. }
  1752.  
  1753. /* Small menu */
  1754. .menu-toggle {
  1755. display: none;
  1756. }
  1757.  
  1758. @media screen and (max-width: 600px) {
  1759. .menu-toggle,
  1760. .main-navigation.toggled .nav-menu {
  1761. display: block;
  1762. }
  1763.  
  1764. .main-navigation ul {
  1765. display: none;
  1766. }
  1767. }
  1768.  
  1769. .site-main .comment-navigation,
  1770. .site-main .paging-navigation,
  1771. .site-main .post-navigation {
  1772. margin: 0 0 1.5em;
  1773. overflow: hidden;
  1774. }
  1775.  
  1776. .comment-navigation .nav-previous,
  1777. .paging-navigation .nav-previous,
  1778. .post-navigation .nav-previous {
  1779. float: left;
  1780. width: 50%;
  1781. }
  1782.  
  1783. .comment-navigation .nav-next,
  1784. .paging-navigation .nav-next,
  1785. .post-navigation .nav-next {
  1786. float: right;
  1787. text-align: right;
  1788. width: 50%;
  1789. }
  1790.  
  1791. /*--------------------------------------------------------------
  1792. Accessibility
  1793. --------------------------------------------------------------*/
  1794.  
  1795. .screen-reader-text {
  1796. clip: rect(1px, 1px, 1px, 1px);
  1797. position: absolute !important;
  1798. height: 1px;
  1799. width: 1px;
  1800. overflow: hidden;
  1801. }
  1802.  
  1803. .screen-reader-text:hover,
  1804. .screen-reader-text:active,
  1805. .screen-reader-text:focus {
  1806. background-color: #f1f1f1;
  1807. border-radius: 3px;
  1808. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  1809. clip: auto !important;
  1810. color: #21759b;
  1811. display: block;
  1812. font-size: 14px;
  1813. font-size: 1.4rem;
  1814. font-weight: bold;
  1815. height: auto;
  1816. left: 5px;
  1817. line-height: normal;
  1818. padding: 15px 23px 14px;
  1819. text-decoration: none;
  1820. top: 5px;
  1821. width: auto;
  1822. z-index: 100000; /* Above WP toolbar */
  1823. }
  1824.  
  1825. /*--------------------------------------------------------------
  1826. Alignments
  1827. --------------------------------------------------------------*/
  1828. .alignleft {
  1829. display: inline;
  1830. float: left;
  1831. margin-right: 1.5em;
  1832. }
  1833.  
  1834. .alignright {
  1835. display: inline;
  1836. float: right;
  1837. margin-left: 1.5em;
  1838. }
  1839.  
  1840. .aligncenter {
  1841. clear: both;
  1842. display: block;
  1843. margin: 0 auto;
  1844. }
  1845.  
  1846. /*--------------------------------------------------------------
  1847. Clearings
  1848. --------------------------------------------------------------*/
  1849. .clear:before,
  1850. .clear:after,
  1851. .entry-content:before,
  1852. .entry-content:after,
  1853. .comment-content:before,
  1854. .comment-content:after,
  1855. .site-header:before,
  1856. .site-header:after,
  1857. .site-content:before,
  1858. .site-content:after,
  1859. .site-footer:before,
  1860. .site-footer:after {
  1861. content: "";
  1862. display: table;
  1863. }
  1864.  
  1865. .clear:after,
  1866. .entry-content:after,
  1867. .comment-content:after,
  1868. .site-header:after,
  1869. .site-content:after,
  1870. .site-footer:after {
  1871. clear: both;
  1872. }
  1873.  
  1874. /*--------------------------------------------------------------
  1875. Widgets
  1876. --------------------------------------------------------------*/
  1877. .widget {
  1878. margin: 0 0 1.5em;
  1879. }
  1880.  
  1881. /* Make sure select elements fit in widgets */
  1882. .widget select {
  1883. max-width: 100%;
  1884. }
  1885.  
  1886. /* Search widget */
  1887. .widget_search .search-submit {
  1888. display: none;
  1889. }
  1890.  
  1891.  
  1892. /*--------------------------------------------------------------
  1893. Posts and pages
  1894. --------------------------------------------------------------*/
  1895. .sticky {
  1896. display: block;
  1897. }
  1898.  
  1899. .hentry {
  1900. margin: 0 0 1.5em;
  1901. }
  1902.  
  1903. .byline,
  1904. .updated:not(.published) {
  1905. display: none;
  1906. }
  1907.  
  1908. .single .byline,
  1909. .group-blog .byline {
  1910. display: inline;
  1911. }
  1912.  
  1913. .page-content,
  1914. .entry-content,
  1915. .entry-summary {
  1916. margin: 1.5em 0 0;
  1917. }
  1918.  
  1919. .page-links {
  1920. clear: both;
  1921. margin: 0 0 1.5em;
  1922. }
  1923.  
  1924. /*--------------------------------------------------------------
  1925. Asides
  1926. --------------------------------------------------------------*/
  1927. .blog .format-aside .entry-title,
  1928. .archive .format-aside .entry-title {
  1929. display: none;
  1930. }
  1931.  
  1932. /*--------------------------------------------------------------
  1933. Comments
  1934. --------------------------------------------------------------*/
  1935. .comment-content a {
  1936. word-wrap: break-word;
  1937. }
  1938.  
  1939. .bypostauthor {
  1940. display: block;
  1941. }
  1942.  
  1943. /*--------------------------------------------------------------
  1944. Infinite scroll
  1945. --------------------------------------------------------------*/
  1946.  
  1947. .infinite-scroll .paging-navigation,
  1948. .infinite-scroll.neverending .site-footer {
  1949. display: none;
  1950. }
  1951.  
  1952.  
  1953. .infinity-end.neverending .site-footer {
  1954. display: block;
  1955. }
  1956.  
  1957. /*--------------------------------------------------------------
  1958. Media
  1959. --------------------------------------------------------------*/
  1960. .page-content img.wp-smiley,
  1961. .entry-content img.wp-smiley,
  1962. .comment-content img.wp-smiley {
  1963. border: none;
  1964. margin-bottom: 0;
  1965. margin-top: 0;
  1966. padding: 0;
  1967. }
  1968.  
  1969. /* Make sure embeds and iframes fit their containers */
  1970. embed,
  1971. iframe,
  1972. object {
  1973. max-width: 100%;
  1974. }
  1975.  
  1976. /*--------------------------------------------------------------
  1977. Captions
  1978. --------------------------------------------------------------*/
  1979. .wp-caption {
  1980. margin-bottom: 1.5em;
  1981. max-width: 100%;
  1982. }
  1983.  
  1984. .wp-caption img[class*="wp-image-"] {
  1985. display: block;
  1986. margin: 0 auto;
  1987. }
  1988.  
  1989. .wp-caption-text {
  1990. text-align: center;
  1991. }
  1992.  
  1993. .wp-caption .wp-caption-text {
  1994. margin: 0.8075em 0;
  1995. }
  1996.  
  1997. /*--------------------------------------------------------------
  1998. 12.2 Galleries
  1999. --------------------------------------------------------------*/
  2000. .gallery {
  2001. margin-bottom: 1.5em;
  2002. }
  2003.  
  2004. .gallery-item {
  2005. display: inline-block;
  2006. text-align: center;
  2007. vertical-align: top;
  2008. width: 100%;
  2009. }
  2010.  
  2011. .gallery-columns-2 .gallery-item {
  2012. max-width: 50%;
  2013. }
  2014.  
  2015. .gallery-columns-3 .gallery-item {
  2016. max-width: 33.33%;
  2017. }
  2018.  
  2019. .gallery-columns-4 .gallery-item {
  2020. max-width: 25%;
  2021. }
  2022.  
  2023. .gallery-columns-5 .gallery-item {
  2024. max-width: 20%;
  2025. }
  2026.  
  2027. .gallery-columns-6 .gallery-item {
  2028. max-width: 16.66%;
  2029. }
  2030.  
  2031. .gallery-columns-7 .gallery-item {
  2032. max-width: 14.28%;
  2033. }
  2034.  
  2035. .gallery-columns-8 .gallery-item {
  2036. max-width: 12.5%;
  2037. }
  2038.  
  2039. .gallery-columns-9 .gallery-item {
  2040. max-width: 11.11%;
  2041. }
  2042.  
  2043. .gallery-caption {
  2044. display: block;
  2045. }
  2046. h1.entry-title a {
  2047. font: 300 27px/31px 'Ubuntu', sans-serif;
  2048. color: #4f4f4f;
  2049. margin: 0;
  2050. }
  2051. .widget ul {
  2052. padding-left: 0em !important;
  2053. }
  2054. .widget ul li ul.children li, .widget ul.sub-menu {
  2055. padding-left: 16px;
  2056. }
  2057.  
  2058. ul.sub-menu {
  2059. padding-left: 16px !important;
  2060. }
  2061. .logo h1 {
  2062. color: #40CDFA;
  2063. font-size: 30px;
  2064. text-decoration: none;
  2065. float: left;
  2066. }
  2067. .logo a {
  2068. text-decoration: none;
  2069. }
  2070. .logo img {
  2071. height: 48px;
  2072. margin-top: -10px;
  2073. margin-bottom: -10px;
  2074. }
  2075.  
  2076. span.category a {
  2077. color: #BCBCBC;
  2078. }
  2079. span.commets a{color: #bcbcbc;}
  2080. .page-title{margin: 0 0 20px !important;}
  2081. .comments-title{margin: 0 0 20px !important;}
  2082.  
  2083. .ye-container{position:relative;padding-bottom:56.25%;padding-top:30px;height:0;overflow:hidden;}.ye-container iframe,.ye-container object,.ye-container embed{position:absolute;top:0;left:0;width:100%;height:100%;}
  2084. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement