Ver Mensaje Individual
  #5 (permalink)  
Antiguo 13/03/2018, 18:39
sergiodueso
 
Fecha de Ingreso: enero-2011
Ubicación: Zaragoza
Mensajes: 98
Antigüedad: 13 años, 3 meses
Puntos: 1
Respuesta: Problema con menu

Código HTML:
Ver original
  1. <meta charset="utf-8"/>
  2. <meta http-equiv="x-ua-compatible" content="ie=edge">
  3. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  4. <link rel="stylesheet" href="css/bootstrap.css"/>
  5. <link rel="stylesheet" href="css/bootstrap-grid.min.css"/>
  6. <link rel="stylesheet" href="css/fontawesome.min.css"/>
  7. <script src="js/jquery-3.3.1.min.js"></script>
  8. <script src="js/smooth-scroll.min.js"></script>
  9.       smoothScroll.init({
  10.       selector: '[data-scroll]', // Selector for links (must be a class, ID, data attribute, or element tag)
  11.       selectorHeader: null, // Selector for fixed headers (must be a valid CSS selector) [optional]
  12.       speed: 1500, // Integer. How fast to complete the scroll in milliseconds
  13.       easing: 'easeInOutCubic', // Easing pattern to use
  14.       offset: 0, // Integer. How far to offset the scrolling anchor location in pixels
  15.       callback: function ( anchor, toggle ) {} // Function to run after scrolling
  16.       });
  17. <title>Turibamba</title>
  18.  
  19.     @import url('https://fonts.googleapis.com/css?family=Kaushan+Script');
  20.     @import url('https://fonts.googleapis.com/css?family=Gloria+Hallelujah');
  21.     @import url('https://fonts.googleapis.com/css?family=Pacifico');
  22.     html, body{
  23.         height: 100vh;
  24.         /*font-family: 'Pacifico', cursive;*/
  25.         font-family: 'Gloria Hallelujah', cursive;
  26.         /*font-family: 'Kaushan Script', cursive;*/
  27.     }
  28.        
  29.     .slider-inicio{
  30.         background: url(imagenes/fondo1.jpg);
  31.         height: 100vh;
  32.         /*background-size: cover;*/
  33.         background-size: 100% 100%;
  34.         background-repeat: no-repeat;
  35.         background-position: center center;
  36.         background-attachment: fixed;
  37.         width: 100vw;
  38.     }
  39.     .fondo-galeria1{
  40.         background: url(imagenes/back5.jpg);
  41.         height: 100vh;
  42.         /*background-size: cover;*/
  43.         background-size: 100% 100%;
  44.         background-position: center center;
  45.         background-attachment: fixed;
  46.     }
  47.     .fondo-nosotras{
  48.         background: url(imagenes/back5.jpg);
  49.         height: 100vh;
  50.         /*background-size: cover;*/
  51.         background-size: 100% 100%;
  52.         background-position: center center;
  53.         background-attachment: fixed;
  54.     }
  55.     .sombra-cards {
  56.       -webkit-box-shadow: 3px 3px 5px 6px #848484;  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  57.       -moz-box-shadow:    3px 3px 5px 6px #848484;  /* Firefox 3.5 - 3.6 */
  58.       box-shadow:         3px 3px 5px 6px #848484;  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */
  59. }
  60.        .sombra-galeria {
  61.             -webkit-box-shadow: 3px 3px 5px 6px #848484;  /* Safari 3-4, iOS 4.0.2 - 4.2, Android 2.3+ */
  62.       -moz-box-shadow:    3px 3px 5px 6px #848484;  /* Firefox 3.5 - 3.6 */
  63.       box-shadow:         3px 3px 5px 6px #848484;  /* Opera 10.5, IE 9, Firefox 4+, Chrome 6+, iOS 5 */          
  64. }
  65. </head>

Última edición por sergiodueso; 15/03/2018 a las 02:49