mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 01:03:39 +01:00
03d79983ee
* Take navbar out of column * Add styles to navbar * Changed navbar classes * Remove unneeded !important from index.css * Remove unneeded !important from _explore.less
83 lines
1.2 KiB
Plaintext
83 lines
1.2 KiB
Plaintext
.explore {
|
|
padding-top: 15px;
|
|
padding-bottom: @footer-margin * 2;
|
|
|
|
.navbar {
|
|
justify-content: center;
|
|
padding-top: 15px !important;
|
|
margin-top: -15px !important;
|
|
margin-bottom: 15px !important;
|
|
background-color: #FAFAFA !important;
|
|
border-width: 1px !important;
|
|
|
|
.octicon {
|
|
width: 16px;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ui.repository.list {
|
|
.item {
|
|
padding-bottom: 25px;
|
|
|
|
&:not(:first-child) {
|
|
border-top: 1px solid #eee;
|
|
padding-top: 25px;
|
|
}
|
|
|
|
.ui.header {
|
|
font-size: 1.5rem;
|
|
padding-bottom: 10px;
|
|
|
|
.name {
|
|
word-break: break-all;
|
|
}
|
|
|
|
.metas {
|
|
color: #888;
|
|
font-size: 14px;
|
|
font-weight: normal;
|
|
span:not(:last-child) {
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
}
|
|
.time {
|
|
font-size: 12px;
|
|
color: #808080;
|
|
}
|
|
}
|
|
}
|
|
|
|
.ui.user.list {
|
|
.item {
|
|
padding-bottom: 25px;
|
|
|
|
&:not(:first-child) {
|
|
border-top: 1px solid #eee;
|
|
padding-top: 25px;
|
|
}
|
|
|
|
.ui.avatar.image {
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
|
|
.description {
|
|
margin-top: 5px;
|
|
|
|
.octicon:not(:first-child) {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
a {
|
|
color: #333;
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|