/**********************************************---***********************
    File name: links.css
    Site: villasbysilvia

    Copyright 2024 Michael J. Miller, All rights reserved

    Purpose: formatting for property page links - also used in admin pages

    Revision History:
    Date        Version     Details
    --------    --------    --------------------------------------------
    6/7/24      3.0a        Created.

************************************************************************/
@layer page {
    .villa-link {
        border: thin solid gray;
        padding: 6px 1.5em;
        background-color: wheat;
        border-radius: 6px;
        margin-top: .5em;
    }
    .villa-link a {
        text-decoration: none;
    }
    .villa-link:hover{
    /*    text-decoration: none;*/
        background-color: aliceblue;
    }
    .villa-link:active{
        background-color: lightskyblue;
        color: white;
        text-decoration: none;
    }
}