Jump to content
Menú alternativo
Alternar el menú de preferencias
Menú alternativo personal
No has accedido
Tu dirección IP será visible si haces alguna edición
Sin resumen de edición
Sin resumen de edición
Línea 1: Línea 1:
* {
font-family: Arial;
}
body {
body {
   margin: 0;
   margin: 0;
Línea 27: Línea 31:
   
   
.nav a:hover {
.nav a:hover {
  background-color: #5e2750;
}
.test {
  text-decoration: none;
  color: #fff;
  display: block;
  transition: .3s background-color;
   background-color: #5e2750;
   background-color: #5e2750;
}
}

Revisión del 00:07 6 may 2022

* {
 font-family: Arial;
}

body {
  margin: 0;
  padding: 0;
  background: #ccc;
}
 
.nav ul {
  list-style: none;
  background-color: #262626;
  text-align: center;
  padding: 0;
  margin: 0;
}
.nav li {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2em;
  line-height: 40px;
  height: 40px;
}
 
.nav a {
  text-decoration: none;
  color: #fff;
  display: block;
  transition: .3s background-color;
}
 
.nav a:hover {
  background-color: #5e2750;
}

.nav a.active {
  background-color: #fff;
  color: #444;
  cursor: default;
}
 
@media screen and (min-width: 600px) {
  .nav li {
    width: 120px;
    border-bottom: none;
    height: 50px;
    line-height: 50px;
    font-size: 1.4em;
  }
 
  /* Option 1 - Display Inline */
  .nav li {
    display: inline-block;
    margin-right: -4px;
  }
 
  /* Options 2 - Float
  .nav li {
    float: left;
  }
  .nav ul {
    overflow: auto;
    width: 600px;
    margin: 0 auto;
  }
  .nav {
    background-color: #444;
  }
  */
}