added home related theming
This commit is contained in:
parent
9b089b976b
commit
3f72345cf2
5 changed files with 61 additions and 54 deletions
|
@ -37,5 +37,6 @@ $border-radius: 5px;
|
||||||
@import 'import/repository.scss';
|
@import 'import/repository.scss';
|
||||||
@import 'import/user.scss';
|
@import 'import/user.scss';
|
||||||
@import 'import/organization.scss';
|
@import 'import/organization.scss';
|
||||||
|
@import 'import/home.scss';
|
||||||
|
|
||||||
@import 'import/_footer.scss';
|
@import 'import/_footer.scss';
|
||||||
|
|
|
@ -30,51 +30,8 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.divider {
|
@include divider;
|
||||||
border-bottom: 1px solid $bg60 !important;
|
@include repository-list;
|
||||||
border-top: 0 !important;
|
|
||||||
}
|
|
||||||
.repository.list,
|
|
||||||
.user.list {
|
|
||||||
.item {
|
|
||||||
&:not(:first-child) {
|
|
||||||
border-top: 1px solid $bg60;
|
|
||||||
}
|
|
||||||
.header {
|
|
||||||
a.name {
|
|
||||||
i.archive.icon {
|
|
||||||
color: $white-dark !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.metas {
|
|
||||||
@if $singleuser == true {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
span {
|
|
||||||
color: $white-dark !important;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.description {
|
|
||||||
p {
|
|
||||||
color: $white;
|
|
||||||
&.time {
|
|
||||||
color: $white-dark;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.tags {
|
|
||||||
a .label {
|
|
||||||
background: $bg60;
|
|
||||||
color: $white;
|
|
||||||
&:hover {
|
|
||||||
background: $bg70;
|
|
||||||
color: $white-light;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -83,15 +40,26 @@
|
||||||
.explore.users {
|
.explore.users {
|
||||||
.container {
|
.container {
|
||||||
.user.list {
|
.user.list {
|
||||||
.content {
|
.item {
|
||||||
.header {
|
&:not(:first-child) {
|
||||||
color: $white;
|
border-top: 1px solid $bg60;
|
||||||
}
|
}
|
||||||
.description {
|
.content {
|
||||||
color: $white;
|
.header {
|
||||||
svg {
|
color: $white;
|
||||||
@if $nojavascript == true {
|
}
|
||||||
display: none;
|
.description {
|
||||||
|
color: $white-dark;
|
||||||
|
a {
|
||||||
|
color: $white;
|
||||||
|
&:hover {
|
||||||
|
color: $red;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
svg {
|
||||||
|
@if $nojavascript == true {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
30
scss/import/home.scss
Normal file
30
scss/import/home.scss
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
|
||||||
|
// home
|
||||||
|
|
||||||
|
.home {
|
||||||
|
//.page.grid {
|
||||||
|
//.column.sixteen {
|
||||||
|
.hero {
|
||||||
|
h1 {
|
||||||
|
color: $white;
|
||||||
|
}
|
||||||
|
h2 {
|
||||||
|
color: $white-dark;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
h1.hero {
|
||||||
|
color: $white !important;
|
||||||
|
.svg {
|
||||||
|
fill: $red;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
p {
|
||||||
|
a {
|
||||||
|
color: $white;
|
||||||
|
text-decoration: underline;
|
||||||
|
text-underline-offset: 2px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
//}
|
||||||
|
//}
|
||||||
|
}
|
|
@ -478,7 +478,7 @@
|
||||||
}
|
}
|
||||||
.description {
|
.description {
|
||||||
p {
|
p {
|
||||||
color: $white;
|
color: $white-dark;
|
||||||
&.time {
|
&.time {
|
||||||
color: $white-dark;
|
color: $white-dark;
|
||||||
}
|
}
|
||||||
|
@ -497,3 +497,10 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@mixin divider {
|
||||||
|
.divider {
|
||||||
|
border-bottom: 1px solid $bg60 !important;
|
||||||
|
border-top: 0 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -35,5 +35,6 @@ $border-radius: 5px;
|
||||||
@import 'import/repository.scss';
|
@import 'import/repository.scss';
|
||||||
@import 'import/user.scss';
|
@import 'import/user.scss';
|
||||||
@import 'import/organization.scss';
|
@import 'import/organization.scss';
|
||||||
|
@import 'import/home.scss';
|
||||||
|
|
||||||
@import 'import/_footer.scss';
|
@import 'import/_footer.scss';
|
||||||
|
|
Reference in a new issue