2015-08-18 20:49:44 +02:00
|
|
|
.user {
|
2017-12-02 20:48:43 +01:00
|
|
|
&:not(.icon) {
|
|
|
|
padding-top: 15px;
|
|
|
|
}
|
2015-08-18 21:36:16 +02:00
|
|
|
|
2017-12-02 20:48:43 +01:00
|
|
|
&.profile {
|
|
|
|
.ui.card {
|
|
|
|
.username {
|
|
|
|
display: block;
|
|
|
|
}
|
2019-05-13 08:26:32 +02:00
|
|
|
|
2017-12-02 20:48:43 +01:00
|
|
|
.extra.content {
|
|
|
|
padding: 0;
|
2015-11-16 17:11:59 +01:00
|
|
|
|
2017-12-02 20:48:43 +01:00
|
|
|
ul {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2015-11-16 17:11:59 +01:00
|
|
|
|
2017-12-02 20:48:43 +01:00
|
|
|
li {
|
|
|
|
padding: 10px;
|
|
|
|
list-style: none;
|
2015-11-16 17:11:59 +01:00
|
|
|
|
2017-12-02 20:48:43 +01:00
|
|
|
&:not(:last-child) {
|
|
|
|
border-bottom: 1px solid #eaeaea;
|
|
|
|
}
|
2015-12-21 13:24:11 +01:00
|
|
|
|
2019-06-27 08:36:37 +02:00
|
|
|
.octicon,
|
|
|
|
.fa {
|
2017-12-02 20:48:43 +01:00
|
|
|
margin-left: 1px;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2015-12-21 13:24:11 +01:00
|
|
|
|
2017-12-02 20:48:43 +01:00
|
|
|
&.follow {
|
|
|
|
.ui.button {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-07-26 17:25:41 +02:00
|
|
|
|
|
|
|
#profile-avatar {
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
|
|
height: 250px;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-height: 768px;
|
|
|
|
max-width: 768px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2017-12-02 20:48:43 +01:00
|
|
|
}
|
2015-11-17 08:18:05 +01:00
|
|
|
|
2017-12-02 20:48:43 +01:00
|
|
|
.ui.repository.list {
|
|
|
|
margin-top: 25px;
|
|
|
|
}
|
2018-10-23 04:57:42 +02:00
|
|
|
|
2019-05-13 08:26:32 +02:00
|
|
|
#loading-heatmap {
|
2018-10-23 04:57:42 +02:00
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
2017-12-02 20:48:43 +01:00
|
|
|
}
|
2015-12-21 13:24:11 +01:00
|
|
|
|
2017-12-02 20:48:43 +01:00
|
|
|
&.followers {
|
|
|
|
.header.name {
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 24px;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2015-12-21 13:24:11 +01:00
|
|
|
|
2017-12-02 20:48:43 +01:00
|
|
|
.follow {
|
|
|
|
.ui.button {
|
|
|
|
padding: 8px 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-30 19:49:54 +01:00
|
|
|
|
|
|
|
&.notification {
|
|
|
|
.octicon {
|
|
|
|
float: left;
|
|
|
|
font-size: 2em;
|
2019-06-27 08:36:37 +02:00
|
|
|
|
|
|
|
&.green {
|
|
|
|
color: #21ba45;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.red {
|
|
|
|
color: #d01919;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.purple {
|
|
|
|
color: #a333c8;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.blue {
|
|
|
|
color: #2185d0;
|
|
|
|
}
|
2016-12-30 19:49:54 +01:00
|
|
|
}
|
2019-05-13 08:26:32 +02:00
|
|
|
|
2016-12-30 19:49:54 +01:00
|
|
|
.content {
|
|
|
|
float: left;
|
|
|
|
margin-left: 7px;
|
|
|
|
}
|
|
|
|
|
2017-01-18 02:18:55 +01:00
|
|
|
table {
|
|
|
|
form {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2017-01-12 05:27:09 +01:00
|
|
|
button {
|
2017-01-18 02:18:55 +01:00
|
|
|
padding: 3px 3px 3px 5px;
|
2017-01-12 05:27:09 +01:00
|
|
|
}
|
|
|
|
|
2017-01-18 02:18:55 +01:00
|
|
|
tr {
|
|
|
|
cursor: pointer;
|
2017-01-12 05:27:09 +01:00
|
|
|
}
|
|
|
|
}
|
2016-12-30 19:49:54 +01:00
|
|
|
}
|
2019-05-13 08:26:32 +02:00
|
|
|
|
2017-03-17 01:49:24 +01:00
|
|
|
&.link-account:not(.icon) {
|
|
|
|
padding-top: 15px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
}
|
2019-05-13 08:26:32 +02:00
|
|
|
|
2017-09-14 13:46:14 +02:00
|
|
|
&.settings {
|
|
|
|
.iconFloat {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|
2015-12-07 21:20:54 +01:00
|
|
|
}
|
2019-05-13 22:52:59 +02:00
|
|
|
|
|
|
|
.user-orgs {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row wrap;
|
|
|
|
padding: 0;
|
|
|
|
margin: -3px !important;
|
|
|
|
|
|
|
|
li {
|
|
|
|
display: flex;
|
|
|
|
border-bottom: 0 !important;
|
|
|
|
padding: 3px !important;
|
|
|
|
width: 20%;
|
|
|
|
max-width: 60px;
|
|
|
|
}
|
|
|
|
}
|