﻿@import url("https://fonts.googleapis.com/css2?family=Baloo+Paaji+2:wght@400;500&display=swap");

/*
    創作者左方面版 CSS layout leftmenu Css
    版面參考下方網址
    https://freefrontend.com/css-cards/
    PROFILE CARDS - CSS GRID,網址
   https://codepen.io/blackellis/pen/jObGbeG
*/

/* Create two unequal columns that floats next to each other */
.column {
    float: left;
    padding: 10px;  
}

.left {
    width: 30%;
}

.right {
    width: 70%;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.userprofile .container {
    /*display: grid;*/
  /*  grid-template-columns: 300px 300px 300px;*/
    grid-gap: 50px;
    justify-content: center;
    align-items: center;
/*    height: 100vh;
*/    background-color: #f5f5f5;
    font-family: 'Baloo Paaji 2', cursive;
}

.userprofile .card {
    /*background-color: #222831;*/
    width: 100%;
/*    height: 100rem;
*/    border-radius: 5px;
   /* display: flex;
    flex-direction: column;*/
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.7);
    /*padding-bottom:20px;*/
    /*color: white;*/
}

.userprofile .card__name {
    margin-top: 15px;
    font-size: 1.8em;
}

.userprofile .card__image {
    height: 160px;
    width: 160px;
    border-radius: 50%;
/*    border: 5px solid #272133;
*/    margin-top: 20px;
/*    box-shadow: 0 10px 50px rgba(235, 25, 110, 1);
*/}


.userprofile .draw-border {
    box-shadow: inset 0 0 0 4px #58cdd1;
    color: #58afd1;
    -webkit-transition: color 0.25s 0.0833333333s;
    transition: color 0.25s 0.0833333333s;
    position: relative;
}

    .userprofile .draw-border::before,
    .userprofile .draw-border::after {
        border: 0 solid transparent;
        box-sizing: border-box;
        content: '';
        pointer-events: none;
        position: absolute;
        width: 0rem;
        height: 0;
        bottom: 0;
        right: 0;
    }

    .userprofile .draw-border::before {
        border-bottom-width: 4px;
        border-left-width: 4px;
    }

    .userprofile .draw-border::after {
        border-top-width: 4px;
        border-right-width: 4px;
    }

    .userprofile .draw-border:hover {
        /*color: #ffe593;*/
        color: #808080;
    }

        .userprofile .draw-border:hover::before,
        .userprofile .draw-border:hover::after {
            border-color: #eb196e;
            -webkit-transition: border-color 0s, width 0.25s, height 0.25s;
            transition: border-color 0s, width 0.25s, height 0.25s;
            width: 100%;
            height: 100%;
        }

        .userprofile .draw-border:hover::before {
            -webkit-transition-delay: 0s, 0s, 0.25s;
            transition-delay: 0s, 0s, 0.25s;
        }

        .userprofile .draw-border:hover::after {
            -webkit-transition-delay: 0s, 0.25s, 0s;
            transition-delay: 0s, 0.25s, 0s;
        }

.userprofile .btn {
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1.5;
    font: 700 1.2rem 'Roboto Slab', sans-serif;
    padding: 1.5em;
    letter-spacing: 0.05rem;
    margin: 0;
    width: 100%;
}

/*刪除button 點下去的效果*/
.btn-check:focus + .btn, .btn:focus {
    /* outline: 0; */
    /*box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 25%);*/
    box-shadow:none;
}

  /*  .userprofile .btn:focus {
        outline: 2px dotted #55d7dc;
    }*/


.userprofile .social-icons {
    padding: 0;
    list-style: none;
    margin: 1em;
}

    .userprofile .social-icons li {
        display: inline-block;
        margin: 0.15em;
        position: relative;
        font-size: 1em;
    }
/*
    .userprofile .social-icons i {
        color: #fff;
        position: absolute;
        top: 0.95em;
        left: 0.96em;
        transition: all 265ms ease-out;
    }

    .userprofile .social-icons a {
        display: inline-block;
    }

        .userprofile .social-icons a:before {
            transform: scale(1);
            -ms-transform: scale(1);
            -webkit-transform: scale(1);
            content: " ";
            width: 45px;
            height: 45px;
            border-radius: 100%;
            display: block;
            background: linear-gradient(45deg, #ff003c, #c648c8);
            transition: all 265ms ease-out;
        }

        .userprofile .social-icons a:hover:before {
            transform: scale(0);
            transition: all 265ms ease-in;
        }

        .userprofile .social-icons a:hover i {
            transform: scale(2.2);
            -ms-transform: scale(2.2);
            -webkit-transform: scale(2.2);
            color: #ff003c;
            background: -webkit-linear-gradient(45deg, #ff003c, #c648c8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 265ms ease-in;
        }
*/
.userprofile .grid-container {
    display: grid;
    grid-template-columns: 1fr ;
    grid-gap: 20px;
    font-size: 1.2em;
}
