1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-25 16:19:46 +02:00
documize/gui/app/styles/view/document/doc-meta.scss

97 lines
1.6 KiB
SCSS
Raw Normal View History

2017-12-04 14:47:44 +00:00
.view-document {
> .document-heading {
.doc-title {
margin: 50px 0 10px;
2018-03-20 19:38:27 +00:00
font-size: 2.2rem;
2017-12-05 19:03:38 +00:00
font-weight: bold;
2017-12-04 14:47:44 +00:00
}
.doc-excerpt {
font-size: 1.2rem;
color: $color-gray;
margin: 0 0 20px;
2017-12-04 14:47:44 +00:00
}
}
}
.document-lifecycle-live {
@include border-radius(3px);
@include ease-in();
display: inline-block;
border: 2px solid $color-green;
padding: 2px 10px;
color: $color-gray;
background-color: $color-off-white;
font-weight: 800;
font-size: 1rem;
2017-12-04 14:47:44 +00:00
&:hover {
color: $color-green;
2017-12-04 14:47:44 +00:00
}
}
2017-12-04 14:47:44 +00:00
.document-lifecycle-draft {
@extend .document-lifecycle-live;
border: 2px solid $color-orange;
2017-12-04 14:47:44 +00:00
&:hover {
color: $color-orange;
}
}
2017-12-04 14:47:44 +00:00
.document-protection-unlocked {
@include border-radius(3px);
@include ease-in();
display: inline-block;
padding: 2px 10px;
font-weight: 800;
font-size: 1rem;
color: $color-gray;
background-color: $color-off-white;
border: 2px solid $color-gray;
2017-12-04 17:25:33 +00:00
&:hover {
color: $color-dark;
}
}
2017-12-04 17:25:33 +00:00
.document-protection-review {
@extend .document-protection-unlocked;
border: 2px solid $color-orange;
2017-12-04 17:25:33 +00:00
&:hover {
color: $color-orange;
}
}
2017-12-26 15:38:55 +00:00
.document-protection-locked {
@extend .document-protection-unlocked;
border: 2px solid $color-red;
&:hover {
color: $color-red;
2017-09-22 17:23:14 +01:00
}
}
.document-category {
display: inline-block;
padding: 2px 10px;
font-weight: 600;
font-size: 1rem;
color: $color-gray;
background-color: $color-off-white;
border: 2px solid $color-gray;
border-left: 13px solid $color-gray;
margin-right: 20px;
}
.document-tag {
display: inline-block;
padding: 2px 0;
font-size: 1.1rem;
font-weight: 600;
font-style: italic;
color: $color-gray;
margin-right: 20px;
}