1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /*========================================
- PROFILE PAGE STYLE
- =========================================*/
- .profile-image {
- text-align: center;
- }
- .profile-image a {
- border-radius: 50%;
- /*border: 2px solid var(--primary);*/
- }
- .profile-image a img {
- width: 80px;
- border-radius: 50%;
- border: 3px solid var(--white);
- }
- .profile-btn {
- margin-top: 33px;
- }
- .profile-btn a {
- width: 100%;
- height: 45px;
- line-height: 45px;
- border-radius: 8px;
- text-align: center;
- text-transform: capitalize;
- color: var(--white);
- background: var(--black);
- transition: all linear .3s;
- -webkit-transition: all linear .3s;
- -moz-transition: all linear .3s;
- -ms-transition: all linear .3s;
- -o-transition: all linear .3s;
- }
- .profile-btn a:hover {
- background: white;
- color: black;
- border: 1px solid black;
- }
- @media (max-width: 991px) {
- .profile-btn {
- margin-top: 5px;
- }
- }
- @media (min-width: 768px) and (max-width: 991px) {
- .profile-image {
- margin-bottom: 20px;
- }
- }
|