/*
    styles.css

    Created by Kalila L. on 2 Jul 2020.
    Copyright 2020 Vircadia contributors.

    Distributed under the Apache License, Version 2.0.
    See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
*/

/* Transitions */

.fade-enter-active, .fade-leave-active {
	transition: opacity .5s;
}
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
	opacity: 0;
}

#app {
    font-family: Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    color: #2c3e50;
}

#nav {
    padding: 30px;

    a {
        font-weight: bold;
        color: #2c3e50;

        &.router-link-exact-active {
            color: #42b983;
        }
    }
}

/* PeopleList.vue */

.userDialogHero .v-image__image {
    filter: blur(1px) brightness(40%);
}

/* UserProfileComponent.vue */

.userProfileHero .v-image__image {
    filter: blur(1px) brightness(40%);
}

/* Placeslist.vue  */

.placesDialogBanner .v-image__image {
    filter: blur(1px) brightness(40%);
}
