﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.user {
    margin-top: 30px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

    .user ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }

        .user ul li {
            display: inline-block;
            padding: 0px 5px;
        }
            .user ul li img{
                width: 30px;
                vertical-align:middle;
                height:auto;
            }

            .user ul li a {
                text-decoration: none;
                background-color: yellow;
                padding: 6px 10px;
                font-weight: bold;
                color: #0094ff;
                text-shadow: 2px 2px 2px #b6ff00;
            }

                .user ul li a:hover {
                    cursor: pointer;
                    color: rebeccapurple;
                    background-color: #00ff21;
                    border-radius: 10px 0px 10px 0px;
                    color: white;
                    text-shadow: 2px 2px 2px #e9e7e7;
                }
