101 lines
1.6 KiB
SCSS
101 lines
1.6 KiB
SCSS
section#contribution-details {
|
|
header {
|
|
nav {
|
|
.amount {
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.symbol {
|
|
padding-left: 0.2rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.content {
|
|
width: 100%;
|
|
margin: 0 0 1.5rem;
|
|
padding: 2rem 2rem;
|
|
|
|
border-top: 1px solid $item-border-color;
|
|
border-bottom: 1px solid $item-border-color;
|
|
background-color: $item-background-color;
|
|
|
|
h3 {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: 2rem;
|
|
|
|
span {
|
|
}
|
|
|
|
&.who-what-when {
|
|
font-size: 1.2rem;
|
|
margin-bottom: 1.2rem;
|
|
}
|
|
|
|
&:last-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
a:not(.button) {
|
|
color: $primary-color;
|
|
text-decoration: none;
|
|
|
|
&:not(.button):hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
|
|
.actions {
|
|
text-align: center;
|
|
}
|
|
|
|
&.vetoed {
|
|
.content {
|
|
h3 {
|
|
text-decoration: line-through;
|
|
}
|
|
}
|
|
}
|
|
|
|
.hint.vetoed {
|
|
overflow: auto;
|
|
margin-top: 2rem;
|
|
padding-top: 2rem;
|
|
border-top: 1px solid $item-border-color;
|
|
font-size: 1.2rem;
|
|
|
|
.icon {
|
|
display: inline-block;
|
|
width: 40px;
|
|
height: 40px;
|
|
float: left;
|
|
margin-right: 1rem;
|
|
margin-bottom: 1rem;
|
|
|
|
svg {
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// On small screens, hide intro text, contributor and contributions list when
|
|
// showing details
|
|
@include media-max(small) {
|
|
#dashboard.with-details {
|
|
#contributions, #stats {
|
|
display: none;
|
|
}
|
|
}
|
|
#intro.with-details {
|
|
display: none;
|
|
}
|
|
}
|