menulogin.css 1.73 KB
Newer Older
Angel Zarate committed
1
* {
2 3
    padding: 0;
    margin: 0;
Angel Zarate committed
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
    box-sizing: border-box;
}

img {
    width: 200px;
    padding: 10px;
    display: block;
    padding: 10px;
}

    body {
        font-family: 'Concert One', cursive;
        font-family: 'Francois One', sans-serif;
        font-family: 'Satisfy', cursive;
        font-family: 'Staatliches', cursive;
        font-size: 13px;
20 21
        background-image: url(imagenes/descarga.svg); 
       
Angel Zarate committed
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
    }

    .header,
    .footer {
        background-color: whitesmoke;
        color: rgb(18, 18, 98);
        padding: 60px;
    }
    .header,.footer{
        background-color: aqua;
    }

    .column {
        float: left;
        padding: 30px;
    }

    .clearfix::after {
        content: "";
        clear: both;
        display: table;
    }

    a {
        color: white;
47
        text-align: center;
Angel Zarate committed
48
        text-decoration: none;
49
        font-size: larger;
Angel Zarate committed
50 51 52 53
    }

    .menu {
        width: 50%;
54
        text-align: center;
Angel Zarate committed
55 56 57 58 59 60 61 62 63 64 65 66 67 68
    }
    .content {
        width: 50%;
    }

    .menu ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

    .menu li {
        padding: 8px;
        margin-bottom: 8px;
69 70 71 72
        border: solid 2px white; 
      /*  background-image: url(imagenes/descarga.svg); */
        color: rgb(18, 18, 98);
     
Angel Zarate committed
73 74 75
    }

    .menu li:hover {
76
       background-color: rgb(18, 18, 98);
Angel Zarate committed
77 78
    }
    div.header{
79 80
        background-image: url(imagenes/descarga.svg);      
        border: solid 1px black; 
Angel Zarate committed
81 82
    }
    h1{
83
        color: white;
Angel Zarate committed
84
        text-align: center;
85 86 87 88 89 90 91 92 93 94 95 96 97
        font-size: 30px;
    }

    h2,h3{
        text-align: center;
        font-family: monospace;
        color: white;
    }
    h2:hover{
        color: yellow;
    }
    h3:hover{
        color: yellow;
Angel Zarate committed
98 99 100
    }