especificos.css 13 KB

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