37 lines
632 B
CSS
37 lines
632 B
CSS
/**
|
|
* @file
|
|
* Styles for node preview page.
|
|
*/
|
|
|
|
.node-preview-container {
|
|
width: 100%;
|
|
padding: 20px;
|
|
box-sizing: border-box;
|
|
background: #f5f5f5;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
.node-preview-form-select {
|
|
width: 100%;
|
|
}
|
|
|
|
.node-preview-container .node-preview-backlink {
|
|
color: white;
|
|
float: left;
|
|
background-color: #7cbc48;
|
|
border-color: #7cbc48;
|
|
padding: 13px 24px;
|
|
text-decoration: none;
|
|
font-weight: 700;
|
|
font-size: 12px;
|
|
line-height: 1;
|
|
text-transform: uppercase;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
.node-preview-container .form-type-select {
|
|
float: right;
|
|
width: auto;
|
|
align-items: center;
|
|
}
|