Changeset 5cf7630 in OpenWorkouts-current


Ignore:
Timestamp:
Feb 14, 2019, 6:17:10 PM (5 years ago)
Author:
Segundo Fdez <segun.2@…>
Branches:
current, feature/docs, master
Children:
0fa21cd
Parents:
0fbc805
Message:

Fix #57

Location:
ow/static
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • ow/static/css/main.css

    r0fbc805 r5cf7630  
    13621362  }
    13631363}
    1364 .user-profile-account > div {
    1365   display: flex;
    1366   align-items: center;
     1364@media (min-width: 800px) {
     1365  .user-profile-account > div {
     1366    display: flex;
     1367    align-items: center;
     1368  }
    13671369}
    13681370.user-profile-account img {
    1369   width: 140px;
    1370   height: 140px;
     1371  width: 64px;
     1372  height: 64px;
    13711373  object-fit: cover;
    13721374  border-radius: 50%;
    13731375  margin-bottom: 0.5em;
    13741376  margin-right: 1em;
     1377}
     1378@media (min-width: 800px) {
     1379  .user-profile-account img {
     1380    width: 140px;
     1381    height: 140px;
     1382  }
    13751383}
    13761384.user-profile-account h2 {
     
    13851393  font-size: 0.875rem;
    13861394  margin: 0;
     1395}
     1396.user-profile-account p a {
     1397  color: #EE4056;
     1398  text-decoration: none;
     1399}
     1400.user-profile-account p a:hover {
     1401  color: #151515;
    13871402}
    13881403.user-profile-account p span {
  • ow/static/less/pages/profile.less

    r0fbc805 r5cf7630  
    1414    }
    1515    >div {
    16         display: flex;
    17         align-items: center;
     16            @media (min-width: @screen-m){
     17                display: flex;
     18                align-items: center;
     19            }
    1820    }
    1921    img {
    20         width: 140px;
    21         height: 140px;
     22        width: 64px;
     23        height: 64px;
    2224        object-fit: cover;
    2325        border-radius: 50%;
    2426        margin-bottom: .5em;
    2527        margin-right: 1em;
     28            @media (min-width: @screen-m){
     29                width: 140px;
     30                height: 140px;
     31            }
    2632    }
    2733        h2 {
     
    3440                .font-size(14);
    3541                margin: 0;
     42                a {
     43                        color: @color-app;
     44                        text-decoration: none;
     45                        &:hover {
     46                                color: @color-main;
     47                        }
     48                }
    3649                span {
    3750                        color: @color-main-medium;
Note: See TracChangeset for help on using the changeset viewer.