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

62 lines
901 B
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 45px;
}
}
> .document-heading-edit {
2017-12-14 13:25:05 +00:00
margin-top: 3.5rem;
2017-12-04 14:47:44 +00:00
margin-bottom: 3rem;
}
> .document-customfields {
margin-bottom: 4rem;
2017-12-04 17:25:33 +00:00
.row {
padding: 5px 0;
margin-bottom: 10px;
2017-12-04 14:47:44 +00:00
2017-12-04 17:25:33 +00:00
&:hover {
.action-button {
visibility: visible;
}
}
.heading {
font-size: 1.1rem;
font-weight: bold;
2017-12-26 15:38:55 +00:00
color: $color-off-black;
2017-12-04 17:25:33 +00:00
text-align: left;
}
.action-button {
visibility: hidden;
margin-left: 15px;
}
.value {
font-size: 1.1rem;
font-weight: normal;
color: $color-black;
text-align: left;
}
2017-12-26 15:38:55 +00:00
.value-static {
font-size: 1.1rem;
font-weight: bold;
color: $color-gray;
text-align: left;
}
2017-12-04 14:47:44 +00:00
}
2017-09-22 17:23:14 +01:00
}
}