especificos.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663
  1. @font-face {
  2. font-family: 'Champagne and Limousine';
  3. src: url('../Fonts/Champagne&Limousines.ttf');
  4. -webkit-font-smoothing: antialiased;
  5. }
  6. @font-face {
  7. font-family: "Open Sans";
  8. font-style: normal;
  9. font-weight: 300;
  10. src: url("../Fonts/OpenSans.woff") format("woff");
  11. }
  12. html, body
  13. {
  14. margin: 0px auto;
  15. font-family: 'Raleway'sans-serif;
  16. -webkit-font-smoothing: antialiased;
  17. -webkit-text-stroke: 0.50px;
  18. position: relative;
  19. }
  20. /**************CONTACT DIV**************/
  21. #overlay-contact {
  22. position: fixed;
  23. top: 0;
  24. left: 0;
  25. height: 100%;
  26. width: 100%;
  27. background-color: rgba(0,0,0,0.5);
  28. z-index: 10;
  29. margin-top: -30px;
  30. font-variant: normal;
  31. font-weight: normal;
  32. color: white;
  33. font-size: 26px;
  34. text-align: center;
  35. display: none;
  36. }
  37. #exit{
  38. width: 30px;
  39. height: 30px;
  40. margin: 0 auto;
  41. cursor: pointer;
  42. float: right;
  43. }
  44. #message{ resize: vertical; overflow:auto; max-height: 200px;}
  45. .basic-grey {
  46. width: 50%;
  47. position: fixed;
  48. left: 50%;
  49. margin: 0 0 0 -25%;
  50. z-index: 11;
  51. background: #465A68;
  52. padding: 20px 30px 20px 30px;
  53. font-family: 'Open Sans';
  54. font-size: 14px;
  55. letter-spacing: 2px;
  56. color: #BCC9CC ;
  57. border:1px solid #DADADA;
  58. display: none;
  59. -webkit-text-stroke: 0.50px;
  60. }
  61. .basic-grey label {
  62. display: block;
  63. margin: 0px 0px 5px;
  64. }
  65. .basic-grey label>span {
  66. float: left;
  67. width: 80px;
  68. text-align: right;
  69. padding-right: 10px;
  70. margin-top: 10px;
  71. color: #BCC9CC ;
  72. -webkit-text-stroke: 0.50px;
  73. }
  74. .basic-grey input[type="text"], .basic-grey input[type="email"], .basic-grey textarea,.basic-grey select{
  75. border: 1px solid #DADADA;
  76. color: #888;
  77. height: 24px;
  78. margin-bottom: 16px;
  79. margin-right: 6px;
  80. margin-top: 2px;
  81. outline: 0 none;
  82. padding: 3px 3px 3px 5px;
  83. width: 70%;
  84. font-family: 'Champagne and Limousine';
  85. font-size: 12px;
  86. }
  87. .basic-grey textarea{
  88. height:100px;
  89. letter-spacing: 2px;
  90. }
  91. .basic-grey .button {
  92. background: #BCC9CC;
  93. border: none;
  94. padding: 10px 25px 10px 25px;
  95. color: #465A68;
  96. }
  97. .basic-grey .button:hover {
  98. opacity: 0.5;
  99. transition: opacity 0.2s ease-in-out;
  100. }
  101. /******************RESPONSIVE MENU******************/
  102. @media(min-width: 801px){
  103. #navbar #responsive{ display: none; }
  104. }
  105. @media(max-width:800px){
  106. #navbar #navlist{ display:none; }
  107. #navbar{
  108. display: table;
  109. width: 70% !important;
  110. margin: 0px auto !important;
  111. padding-bottom: 10px;
  112. font-family: 'Champagne and Limousine'!important;
  113. font-size: 120%!important;
  114. color: #485260!important;
  115. letter-spacing: 5px!important;
  116. }
  117. #responsive img{
  118. width: 55px;
  119. height: auto;
  120. }
  121. #responsive
  122. {
  123. text-transform: uppercase;
  124. text-align:center;
  125. width: 70%;
  126. padding-bottom: 30px;
  127. display: table-row;
  128. }
  129. #responsive li
  130. {
  131. vertical-align: middle;
  132. display: table-cell;
  133. text-align: center;
  134. width: 0%;
  135. }
  136. #top_wrapper{
  137. height: 70px!important;
  138. }
  139. }
  140. /*************NAVBAR************/
  141. #top_wrapper
  142. {
  143. background-color: rgba(255,255,255,255);
  144. width: 100%;
  145. position: fixed;
  146. top: 0px;
  147. box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.2);
  148. border-bottom: 2px solid ;
  149. padding-top: 10px;
  150. height: 65px;
  151. }
  152. #navbar
  153. {
  154. display: table;
  155. width: 90%;
  156. margin: 0px auto;
  157. background-color:#FFF;
  158. padding-bottom: 10px;
  159. font-family: 'Champagne and Limousine';
  160. font-size: 100%;
  161. color: #485260;
  162. letter-spacing: 5px;
  163. }
  164. #navlist
  165. {
  166. text-transform: uppercase;
  167. text-align:center;
  168. width: 70%;
  169. padding-bottom: 30px;
  170. display: table-row;
  171. }
  172. #navlist li
  173. {
  174. vertical-align: middle;
  175. display: table-cell;
  176. text-align: center;
  177. width: 0%;
  178. }
  179. /*************SECCIONES************/
  180. .seccion{
  181. width: 90%;
  182. height: auto;
  183. text-align: center;
  184. margin: 70px auto;
  185. border-bottom: 1px solid #475A68;
  186. }
  187. #producto
  188. {
  189. font-family: "Champagne and Limousine";
  190. font-size: 16px;
  191. color: #7B9299;
  192. letter-spacing: 5px;
  193. width: 660px;
  194. }
  195. #banner
  196. {
  197. background: url('../Images/banner.jpg') no-repeat scroll center bottom / cover #485260 ;
  198. width: 100%;
  199. height: 70%;
  200. max-height: 100%;
  201. text-align: center;
  202. margin:30px auto;
  203. font-family: 'Champagne and Limousine';
  204. font-size: 300%;
  205. color: White;
  206. padding-top: 100px;
  207. -webkit-text-stroke: 0.20px;
  208. }
  209. #banner p{
  210. color: white;
  211. -webkit-text-stroke: 0.10px;
  212. }
  213. #productos_titulo
  214. {
  215. width: auto;
  216. height: auto;
  217. padding-top: 1px;
  218. }
  219. /*
  220. #nosotros, #actividades, #distribuidoras, #cursos
  221. {
  222. }
  223. */
  224. .titulo_curso{
  225. font-family: 'Champagne and Limousine';
  226. font-size: 19pt;
  227. color: #465A68;
  228. text-align: center;
  229. }
  230. .descripcion_curso{
  231. margin: 0 30px;
  232. font-family: 'Open Sans'/*'Raleway', sans-serif*/;
  233. font-size: 16px;
  234. text-align: center;
  235. /*letter-spacing: 2px;*/
  236. color: #465A68;/*#7196A6*/
  237. font-weight: 300;
  238. line-height: 23px;
  239. margin-bottom:40px;
  240. }
  241. #cursos{
  242. width: 100%;
  243. height: auto;
  244. text-align: center;
  245. margin: 70px auto;
  246. border-bottom: 1px solid #475A68;
  247. }
  248. #cursos h1 span{
  249. border: 1px solid;
  250. width: 100%;
  251. }
  252. #curso{
  253. background: url('http://subtlepatterns.com/patterns/back_pattern.png') repeat;
  254. }
  255. #productos
  256. {
  257. /*background: url('Images/productos.jpg') no-repeat scroll center bottom / cover #485260 ;
  258. height: 400px;*/
  259. max-height: 100%;
  260. width: 90%;
  261. margin: 100px auto;
  262. font-family: 'Champagne and Limousine';
  263. /*font-size: 200%;*/
  264. color: #D8DFE1;
  265. text-align: center;
  266. }
  267. .descripciones{
  268. width: 90%;
  269. text-align: center;
  270. margin-top: 0px;
  271. margin-bottom: 40px;
  272. color: #2B4C5F;
  273. font-family: "Open Sans";
  274. font-size: 14px;
  275. display: inline-block;
  276. }
  277. .descripcion{
  278. text-align: center;
  279. width: 30%;
  280. padding: 0px 10px;
  281. display: inline-table;
  282. }
  283. /*************TABLAS************/
  284. #capital-tabla, #interior-tabla
  285. {
  286. background: none repeat scroll 0% 0% #FFF;
  287. width: 480px;
  288. border-collapse: collapse;
  289. text-align: center;
  290. margin: 20px auto;
  291. }
  292. thead
  293. {
  294. font-family: 'Champagne and Limousine';
  295. font-weight: normal;
  296. font-size: 150%;
  297. vertical-align: baseline;
  298. margin: 0px auto;
  299. padding: 0px;
  300. outline: 0px none;
  301. border: 0px none;
  302. background: none repeat scroll 0% 0% transparent;
  303. }
  304. th
  305. {
  306. font-weight: normal;
  307. padding: 10px 30px;
  308. color: #475A68;
  309. border-bottom: 1px solid;
  310. width: 130px;
  311. }
  312. tbody, td
  313. {
  314. font-family: 'Open Sans';
  315. font-size: 14px;
  316. font-weight: normal;
  317. padding: 10px;
  318. text-align: center;
  319. color: #475A68;
  320. }
  321. tbody tr:nth-child(odd) {
  322. background-color: #D8DFE1;
  323. }
  324. /**************FOOTER**************/
  325. #ok:hover, #ok:active, #ok
  326. {
  327. background-color:#BCC9CC;
  328. text-indent:0px;
  329. display:inline-block;
  330. color:#475A68;
  331. font-size:18px;
  332. font-weight:normal;
  333. font-style:normal;
  334. width:96px;
  335. text-align:center;
  336. height: 31px;
  337. }
  338. #footer-outer
  339. {
  340. background-color: #475A68;
  341. font-family: 'Open Sans';
  342. font-size: 26px;
  343. color: #BCC9CC;
  344. width: 100%;
  345. height: 250px;
  346. }
  347. #footer-inner-left
  348. {
  349. font-family: 'Open Sans';
  350. padding-top: 30px;
  351. padding-left: 30px;
  352. width: 40%;
  353. float: left;
  354. display: inline;
  355. text-align: left;
  356. font-size: 15px;
  357. }
  358. #footer-inner-right
  359. {
  360. font-family: 'Open Sans';
  361. font-size: 15px;
  362. padding-top: 20px;
  363. padding-right: 30px;
  364. width: 40%;
  365. float: right;
  366. display:inline;
  367. text-align: right;
  368. }
  369. #suscribe
  370. {
  371. width : 40%;
  372. height: 30px;
  373. background-color: #BCC9CC;
  374. border: 0px;
  375. margin-top: 20px;
  376. }
  377. #input-footer{
  378. }
  379. /*************HEADERS STYLE************/
  380. hr
  381. {
  382. color: #465A68;
  383. background-color: #465A68;
  384. height: 1px;
  385. }
  386. h2
  387. {
  388. font-family: 'Open Sans';
  389. font-weight: 300;
  390. font-size: 20px;
  391. }
  392. .tabla
  393. {
  394. margin: 50px auto;
  395. text-align: center;
  396. display:table;
  397. border: 0.5px solid;
  398. }
  399. h3
  400. {
  401. display: table-cell;
  402. vertical-align: middle;
  403. font-family: 'Champagne and Limousine';
  404. font-weight: normal;
  405. color: #D8DFE1;
  406. background: #475A68;
  407. width: 200px;
  408. height: 50px;
  409. text-align: center;
  410. margin: 0px auto;
  411. text-transform: uppercase;
  412. letter-spacing: 2px;
  413. }
  414. h1
  415. {
  416. font-weight:normal;
  417. width: 100%;
  418. text-align: center;
  419. border-bottom: 0.5px solid #465A68;
  420. line-height: 0.1em;
  421. font-family: 'Champagne and Limousine';
  422. margin: 30px auto;
  423. color: #465A68;
  424. font-size: 190%;
  425. font-style: normal;
  426. letter-spacing: 5px;
  427. }
  428. h1 span {
  429. background:#fff;
  430. padding:0 10px;
  431. }
  432. h2
  433. {
  434. text-align: center;
  435. color : #fff;
  436. }
  437. h4
  438. {
  439. font-size: 30px;
  440. color:#BCC9CC;
  441. text-align: right;
  442. font-family: 'Champagne and Limousine';
  443. font-weight: normal;
  444. margin: 0 0;
  445. }
  446. h5
  447. {
  448. font-size: 30px;
  449. color:#BCC9CC;
  450. text-align: left;
  451. font-family: 'Champagne and Limousine';
  452. font-weight: normal;
  453. margin: 0 0;
  454. }
  455. p
  456. {
  457. margin: 70px 30px 70px 30px;
  458. font-family: 'Open Sans'/*'Raleway', sans-serif*/;
  459. font-size: 16px;
  460. text-align: center;
  461. /*letter-spacing: 2px;*/
  462. color: #465A68;/*#7196A6*/
  463. font-weight: 300;
  464. line-height: 23px;
  465. }
  466. a:link
  467. {
  468. color: #485260;
  469. text-decoration:none;
  470. }
  471. a:hover,
  472. {
  473. opacity: 0.5; transition: opacity 0.3s ease-in-out;
  474. }
  475. ul, li
  476. {
  477. width: 200px;
  478. list-style-type: none;
  479. margin-bottom: 3px;
  480. }
  481. li:hover
  482. {
  483. opacity: 0.5;
  484. transition: opacity 0.5s ease-in-out;
  485. }
  486. .hidden { display: none;}
  487. /********************SLIDES TODO: es necesario?
  488. @import url(http://fonts.googleapis.com/css?family=Varela+Round);
  489. .slides {
  490. float: left;
  491. padding: 0;
  492. width: 900px;
  493. height: 600px;
  494. display: block;
  495. margin: -51px auto;
  496. position: relative;
  497. }
  498. .slides * {
  499. user-select: none;
  500. -ms-user-select: none;
  501. -moz-user-select: none;
  502. -khtml-user-select: none;
  503. -webkit-user-select: none;
  504. -webkit-touch-callout: none;
  505. }
  506. .slides input { display: none; }
  507. .slide-container { display: block; }
  508. .slide {
  509. top: 0;
  510. opacity: 0;
  511. width: 900px;
  512. height: 500px;
  513. display: block;
  514. position: absolute;
  515. transform: scale(0);
  516. transition: all .7s ease-in-out;
  517. }
  518. .slide img {
  519. width: 100%;
  520. height: 100%;
  521. }
  522. .nav label
  523. {
  524. height: 120px;
  525. z-index: 9;
  526. cursor: pointer;
  527. color: #475A68;
  528. font-size: 80pt;
  529. text-align: center;
  530. font-family: "Varela Round", sans-serif;
  531. margin: auto auto;
  532. margin-top: 170px;
  533. }
  534. .slide:hover + .nav label { opacity: 0.5; }
  535. .nav label:hover { opacity: 0.2; transition: opacity 1s ease-in-out;}
  536. .nav .next { right: 0; }
  537. input:checked + .slide-container .slide {
  538. opacity: 1;
  539. transition: opacity 1s ease-in-out;
  540. }
  541. input:checked + .slide-container .nav label { display: block; }
  542. .nav-dots {
  543. width: 100%;
  544. bottom: 9px;
  545. height: 11px;
  546. display: inline-block;
  547. position: absolute;
  548. text-align: center;
  549. }
  550. .nav-dots .nav-dot {
  551. top: -5px;
  552. width: 11px;
  553. height: 11px;
  554. margin: 0 4px;
  555. position: relative;
  556. border-radius: 100%;
  557. display: inline-block;
  558. background-color: rgba(0, 0, 0, 0.6);
  559. }
  560. .nav-dots .nav-dot:hover {
  561. cursor: pointer;
  562. background-color: rgba(0, 0, 0, 0.8);
  563. input#img-1:checked ~ .nav-dots label#img-dot-1,
  564. input#img-2:checked ~ .nav-dots label#img-dot-2,
  565. input#img-3:checked ~ .nav-dots label#img-dot-3,
  566. input#img-4:checked ~ .nav-dots label#img-dot-4,
  567. input#img-5:checked ~ .nav-dots label#img-dot-5,
  568. input#img-6:checked ~ .nav-dots label#img-dot-6 {
  569. background: rgba(0, 0, 0, 0.8);
  570. }
  571. ********************/