mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
78 lines
1.6 KiB
SCSS
78 lines
1.6 KiB
SCSS
|
/**
|
||
|
* Copyright 2015 IBM Corp.
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
**/
|
||
|
|
||
|
table.node-info {
|
||
|
font-size: 14px;
|
||
|
margin: 5px;
|
||
|
width: 97%;
|
||
|
}
|
||
|
table.node-info tr {
|
||
|
border: 1px solid #ddd;
|
||
|
}
|
||
|
table.node-info tr.blank {
|
||
|
border: none;
|
||
|
}
|
||
|
table.node-info tr.blank td {
|
||
|
padding-top: 8px;
|
||
|
border: none;
|
||
|
font-weight: bold;
|
||
|
padding-left: 0px;
|
||
|
}
|
||
|
table.node-info td:first-child{
|
||
|
color: #000;
|
||
|
vertical-align: top;
|
||
|
width: 90px;
|
||
|
padding: 3px;
|
||
|
border-right: 1px solid #ddd;
|
||
|
}
|
||
|
table.node-info td:last-child{
|
||
|
padding-left: 5px;
|
||
|
color: #666;
|
||
|
}
|
||
|
|
||
|
div.node-info {
|
||
|
margin: 5px;
|
||
|
}
|
||
|
.node-info-property-header {
|
||
|
color: #666;
|
||
|
}
|
||
|
|
||
|
.node-info-property-header:hover,
|
||
|
.node-info-property-header:focus {
|
||
|
color: #666;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
.node-help {
|
||
|
font-size: 16px;
|
||
|
h1 {
|
||
|
font-weight: normal;
|
||
|
font-size: 1.953em;
|
||
|
margin: 8px auto;
|
||
|
}
|
||
|
h2 {
|
||
|
font-weight: normal;
|
||
|
font-size: 1.563em;
|
||
|
margin: 8px auto;
|
||
|
}
|
||
|
h3,
|
||
|
h4,
|
||
|
h5 {
|
||
|
font-weight: normal;
|
||
|
font-size: 1.25em;
|
||
|
margin: 8px auto;
|
||
|
}
|
||
|
}
|