estilos2.css 921 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
body {
    background: #1e1f24;
    color: #333;
    text-align: center;
    font-family: "Arial";
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.imagenes {
    align-items: center;
    /* padding: auto; */
    width: 70px;
    padding: 1em;
    text-align: left;
    justify-content: center;
    display: flex;
    vertical-align: middle;
    position: relative;
}

.imagen1 {
    position: absolute;
    left: 100px;
    top: 100px;
}

.imagen2 {
    position: absolute;
    left: 200px;
    top: 200px;
}

.imagen3 {
    position: absolute;
    left: 300px;
    top: 300px;
}

.imagen4 {
    position: absolute;
    left: 400px;
    top: 400px;
}

.imagen5 {
    position: absolute;
    left: 500px;
    top: 500px;
}

.imagen1:hover~div {
    visibility: hidden;
}

.imagen2:hover~div {
    visibility: hidden;
}

.imagen3:hover~div {
    visibility: hidden;
}

.imagen4:hover~div {
    visibility: hidden;
}