especificos.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682
  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. .titulos{
  225. font-family: 'Champagne and Limousine';
  226. font-size: 19pt;
  227. color: #465A68;
  228. text-align: left;
  229. }
  230. .titulo_curso{
  231. font-family: 'Champagne and Limousine';
  232. font-size: 19pt;
  233. color: #465A68;
  234. text-align: center;
  235. cursor: pointer;
  236. }
  237. .descripcion_curso{
  238. margin: 0px auto;
  239. width: 70%;
  240. font-family: 'Open Sans'/*'Raleway', sans-serif*/;
  241. font-size: 16px;
  242. text-align: justify;
  243. /*letter-spacing: 2px;*/
  244. color: #465A68;/*#7196A6*/
  245. font-weight: 300;
  246. line-height: 23px;
  247. margin-bottom:40px;
  248. display: none;
  249. }
  250. .descripcion_curso i {
  251. text-align: center;
  252. font-size: 16pt;
  253. text-decoration: underline;
  254. }
  255. #cursos{
  256. width: 100%;
  257. height: auto;
  258. text-align: center;
  259. margin: 70px auto;
  260. border-bottom: 1px solid #475A68;
  261. }
  262. #cursos h1 span{
  263. border: 1px solid;
  264. width: 100%;
  265. }
  266. #curso{
  267. background: url('http://subtlepatterns.com/patterns/back_pattern.png') repeat;
  268. }
  269. #productos
  270. {
  271. /*background: url('Images/productos.jpg') no-repeat scroll center bottom / cover #485260 ;
  272. height: 400px;*/
  273. max-height: 100%;
  274. width: 90%;
  275. margin: 100px auto;
  276. font-family: 'Champagne and Limousine';
  277. /*font-size: 200%;*/
  278. color: #D8DFE1;
  279. text-align: center;
  280. }
  281. .descripciones{
  282. width: 90%;
  283. text-align: center;
  284. margin-top: 0px;
  285. margin-bottom: 40px;
  286. color: #2B4C5F;
  287. font-family: "Open Sans";
  288. font-size: 14px;
  289. display: inline-block;
  290. }
  291. .descripcion{
  292. text-align: center;
  293. width: 30%;
  294. padding: 0px 10px;
  295. display: inline-table;
  296. }
  297. /*************TABLAS************/
  298. #capital-tabla, #interior-tabla
  299. {
  300. background: none repeat scroll 0% 0% #FFF;
  301. width: 480px;
  302. border-collapse: collapse;
  303. text-align: center;
  304. margin: 20px auto;
  305. }
  306. thead
  307. {
  308. font-family: 'Champagne and Limousine';
  309. font-weight: normal;
  310. font-size: 150%;
  311. vertical-align: baseline;
  312. margin: 0px auto;
  313. padding: 0px;
  314. outline: 0px none;
  315. border: 0px none;
  316. background: none repeat scroll 0% 0% transparent;
  317. }
  318. th
  319. {
  320. font-weight: normal;
  321. padding: 10px 30px;
  322. color: #475A68;
  323. border-bottom: 1px solid;
  324. width: 130px;
  325. }
  326. tbody, td
  327. {
  328. font-family: 'Open Sans';
  329. font-size: 14px;
  330. font-weight: normal;
  331. padding: 10px;
  332. text-align: center;
  333. color: #475A68;
  334. }
  335. tbody tr:nth-child(odd) {
  336. background-color: #D8DFE1;
  337. }
  338. /**************FOOTER**************/
  339. #ok:hover, #ok:active, #ok
  340. {
  341. background-color:#BCC9CC;
  342. text-indent:0px;
  343. display:inline-block;
  344. color:#475A68;
  345. font-size:18px;
  346. font-weight:normal;
  347. font-style:normal;
  348. width:96px;
  349. text-align:center;
  350. height: 31px;
  351. }
  352. #footer-outer
  353. {
  354. background-color: #475A68;
  355. font-family: 'Open Sans';
  356. font-size: 26px;
  357. color: #BCC9CC;
  358. width: 100%;
  359. height: 250px;
  360. }
  361. #footer-inner-left
  362. {
  363. font-family: 'Open Sans';
  364. padding-top: 30px;
  365. padding-left: 30px;
  366. width: 40%;
  367. float: left;
  368. display: inline;
  369. text-align: left;
  370. font-size: 15px;
  371. }
  372. #footer-inner-right
  373. {
  374. font-family: 'Open Sans';
  375. font-size: 15px;
  376. padding-top: 20px;
  377. padding-right: 30px;
  378. width: 40%;
  379. float: right;
  380. display:inline;
  381. text-align: right;
  382. }
  383. #suscribe
  384. {
  385. width : 40%;
  386. height: 30px;
  387. background-color: #BCC9CC;
  388. border: 0px;
  389. margin-top: 20px;
  390. }
  391. #input-footer{
  392. }
  393. /*************HEADERS STYLE************/
  394. hr
  395. {
  396. color: #465A68;
  397. background-color: #465A68;
  398. height: 1px;
  399. }
  400. h2
  401. {
  402. font-family: 'Open Sans';
  403. font-weight: 300;
  404. font-size: 20px;
  405. }
  406. .tabla
  407. {
  408. margin: 50px auto;
  409. text-align: center;
  410. display:table;
  411. border: 0.5px solid;
  412. }
  413. h3
  414. {
  415. display: table-cell;
  416. vertical-align: middle;
  417. font-family: 'Champagne and Limousine';
  418. font-weight: normal;
  419. color: #D8DFE1;
  420. background: #475A68;
  421. width: 200px;
  422. height: 50px;
  423. text-align: center;
  424. margin: 0px auto;
  425. text-transform: uppercase;
  426. letter-spacing: 2px;
  427. }
  428. h1
  429. {
  430. font-weight:normal;
  431. width: 100%;
  432. text-align: center;
  433. border-bottom: 1px solid #465A68;
  434. line-height: 0.1em;
  435. font-family: 'Champagne and Limousine';
  436. margin: 30px auto;
  437. color: #465A68;
  438. font-size: 190%;
  439. font-style: normal;
  440. letter-spacing: 5px;
  441. }
  442. h1 span {
  443. background:#fff;
  444. padding:0 10px;
  445. }
  446. h2
  447. {
  448. text-align: center;
  449. color : #fff;
  450. }
  451. h4
  452. {
  453. font-size: 30px;
  454. color:#BCC9CC;
  455. text-align: right;
  456. font-family: 'Champagne and Limousine';
  457. font-weight: normal;
  458. margin: 0 0;
  459. }
  460. h5
  461. {
  462. font-size: 30px;
  463. color:#BCC9CC;
  464. text-align: left;
  465. font-family: 'Champagne and Limousine';
  466. font-weight: normal;
  467. margin: 0 0;
  468. }
  469. p
  470. {
  471. margin: 40px 30px 70px 30px;
  472. font-family: 'Open Sans'/*'Raleway', sans-serif*/;
  473. font-size: 16px;
  474. text-align: center;
  475. /*letter-spacing: 2px;*/
  476. color: #465A68;/*#7196A6*/
  477. font-weight: 300;
  478. line-height: 23px;
  479. }
  480. a:link
  481. {
  482. color: #485260;
  483. text-decoration:none;
  484. }
  485. a:hover,
  486. {
  487. opacity: 0.5; transition: opacity 0.3s ease-in-out;
  488. }
  489. ul, li
  490. {
  491. cursor: pointer;
  492. width: 200px;
  493. list-style-type: none;
  494. margin-bottom: 3px;
  495. }
  496. li:hover
  497. {
  498. opacity: 0.5;
  499. transition: opacity 0.5s ease-in-out;
  500. }
  501. .hidden { display: none;}
  502. /********************SLIDES TODO: es necesario?
  503. @import url(http://fonts.googleapis.com/css?family=Varela+Round);
  504. .slides {
  505. float: left;
  506. padding: 0;
  507. width: 900px;
  508. height: 600px;
  509. display: block;
  510. margin: -51px auto;
  511. position: relative;
  512. }
  513. .slides * {
  514. user-select: none;
  515. -ms-user-select: none;
  516. -moz-user-select: none;
  517. -khtml-user-select: none;
  518. -webkit-user-select: none;
  519. -webkit-touch-callout: none;
  520. }
  521. .slides input { display: none; }
  522. .slide-container { display: block; }
  523. .slide {
  524. top: 0;
  525. opacity: 0;
  526. width: 900px;
  527. height: 500px;
  528. display: block;
  529. position: absolute;
  530. transform: scale(0);
  531. transition: all .7s ease-in-out;
  532. }
  533. .slide img {
  534. width: 100%;
  535. height: 100%;
  536. }
  537. .nav label
  538. {
  539. height: 120px;
  540. z-index: 9;
  541. cursor: pointer;
  542. color: #475A68;
  543. font-size: 80pt;
  544. text-align: center;
  545. font-family: "Varela Round", sans-serif;
  546. margin: auto auto;
  547. margin-top: 170px;
  548. }
  549. .slide:hover + .nav label { opacity: 0.5; }
  550. .nav label:hover { opacity: 0.2; transition: opacity 1s ease-in-out;}
  551. .nav .next { right: 0; }
  552. input:checked + .slide-container .slide {
  553. opacity: 1;
  554. transition: opacity 1s ease-in-out;
  555. }
  556. input:checked + .slide-container .nav label { display: block; }
  557. .nav-dots {
  558. width: 100%;
  559. bottom: 9px;
  560. height: 11px;
  561. display: inline-block;
  562. position: absolute;
  563. text-align: center;
  564. }
  565. .nav-dots .nav-dot {
  566. top: -5px;
  567. width: 11px;
  568. height: 11px;
  569. margin: 0 4px;
  570. position: relative;
  571. border-radius: 100%;
  572. display: inline-block;
  573. background-color: rgba(0, 0, 0, 0.6);
  574. }
  575. .nav-dots .nav-dot:hover {
  576. cursor: pointer;
  577. background-color: rgba(0, 0, 0, 0.8);
  578. input#img-1:checked ~ .nav-dots label#img-dot-1,
  579. input#img-2:checked ~ .nav-dots label#img-dot-2,
  580. input#img-3:checked ~ .nav-dots label#img-dot-3,
  581. input#img-4:checked ~ .nav-dots label#img-dot-4,
  582. input#img-5:checked ~ .nav-dots label#img-dot-5,
  583. input#img-6:checked ~ .nav-dots label#img-dot-6 {
  584. background: rgba(0, 0, 0, 0.8);
  585. }
  586. ********************/