123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244 |
- .user {
- &:not(.icon) {
- padding-top: @15;
- padding-bottom: @footer-margin * 2;
- }
- &.settings {
- .list {
- .item.ui.grid {
- margin-top: @15;
- }
- }
- .email.list {
- .item:not(:first-child) {
- border-top: 1px solid #eaeaea;
- height: 50px;
- .button {
- margin-top: -@10;
- }
- }
- .item .ui.primary.label {
- margin-top: -5px;
- }
- }
- &.sshkeys,
- &.applications {
- .right.floated.button {
- padding-top: 1rem;
- padding-bottom: 1rem;
- }
- }
- &.security {
- .two-factor .toggle.button {
- margin-top: -5px;
- }
- }
- &.repositories .repos {
- padding: 0;
- .item {
- padding: @15;
- height: 46px;
- .button {
- margin-top: -5px;
- }
- }
- }
- &.organizations .orgs {
- &.non-empty {
- padding: 0;
- }
- .item {
- padding: @10;
- .button {
- margin-top: @5;
- margin-right: 8px;
- }
- }
- }
- }
- &.profile {
- .ui.card {
- .header {
- word-break: break-all;
- }
- .username {
- background-color: #ffdb99;
- color: #330000;
- display: inline-block;
- margin-top: @5;
- padding: 3px;
- padding-left: 8px;
- padding-right: 8px;
- border-radius: 2em;
- font-size: 11px;
- }
- .extra.content {
- padding: 0;
- ul {
- margin: 0;
- padding: 0;
- li {
- padding: @10;
- list-style: none;
- &:not(:last-child) {
- border-bottom: 1px solid #eaeaea;
- font-family: monospace;
- font-weight: bold;
- }
- .octicon {
- margin-left: 1px;
- margin-right: @5;
- }
- &.follow {
- .ui.button {
- width: 100%;
- }
- }
- }
- }
- }
- }
- .ui.repository.list {
- margin-top: 25px;
- }
- }
- &.followers {
- .header.name {
- font-size: @20;
- line-height: 24px;
- vertical-align: middle;
- }
- .follow {
- .ui.button {
- padding: 8px @15;
- }
- }
- }
- &.description {
- margin-bottom: @5;
- margin-top: @5;
- overflow: hidden;
- font-size: 13px;
- color: #6a737d;
- font-family: monospace !important;
- font-weight: 100 !important;
- }
- }
- .verified {
- font-size: 16px;
- color: #328a46 !important;
- margin-right: 3px;
- &.v-explore {
- font-size: 13px;
- }
- }
- .isstaff {
- font-size: 16px;
- color: #f2711c;
- }
- .developer {
- font-size: 16px;
- color: #00bcd4;
- }
- .gitotedeveloper {
- font-size: 16px;
- color: #21ba45;
- }
- .org-grid {
- display: inline-block;
- margin-bottom: 3px;
- }
- .staff {
- padding: 3px 4px;
- font-size: 12px;
- font-family: 'Source Sans Pro', sans-serif;
- color: @white-100;
- text-transform: uppercase;
- border-radius: 5px;
- box-shadow: inset 0 -1px 0 rgba(27,31,35,0.12);
- background-color: #0366d6;
- }
- .pro-truncate {
- overflow: hidden;
- text-overflow: ellipsis;
- display: inline-block;
- width: 85%;
- margin-bottom: -6px;
- }
- // Mobile
- @media (max-width: 1020px) {
- .ui.eleven.wide.column{
- width: 100% !important;
- }
-
- .ui.container .ui.grid .ui.eleven.wide.column .text.right .ui.green.button{
- width: 100%;
- }
- .mobile-card {
- border-radius: 0 !important;
- box-shadow: none;
- padding: @15;
- font-family: monospace;
- &.follow {
- margin-top: @15;
- width: 100%;
- border-radius: @5 !important;
- }
- }
- .mobile-count {
- display: none !important;
- }
- .mobile-name {
- font-size: 18px;
- font-weight: bold;
- }
- .status {
- color: #949494;
- font-size: 12px;
- margin-top: 8px !important;
- }
- }
- // Only Dektop
- @media (min-width: 1020px) {
- .mobile-card {
- display: none;
- }
- }
|