mirror of https://github.com/perkeep/perkeep.git
83 lines
1.5 KiB
CSS
83 lines
1.5 KiB
CSS
/*
|
|
Copyright 2014 The Camlistore Authors
|
|
|
|
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.
|
|
*/
|
|
|
|
@import (less) "prefix-free.css";
|
|
|
|
|
|
.cam-permanode-detail {
|
|
font-family: 'Open Sans', sans-serif;
|
|
margin: 1.5em 2em;
|
|
}
|
|
|
|
.cam-permanode-detail h1 {
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
.cam-permanode-detail table {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.cam-permanode-detail th {
|
|
border-bottom: 1px solid black;
|
|
cursor: pointer;
|
|
padding: 0.6em 1em 0.4em;
|
|
text-align: left;
|
|
}
|
|
|
|
.cam-permanode-detail th i {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.cam-permanode-detail td {
|
|
border: 1px solid #aaa;
|
|
padding: 0.6em 1em 0.4em;
|
|
text-align: left;
|
|
}
|
|
|
|
.cam-permanode-detail tr>*:nth-child(1) {
|
|
width: 50%;
|
|
}
|
|
|
|
.cam-permanode-detail tr>*:nth-child(2) {
|
|
width: 50%;
|
|
}
|
|
|
|
.cam-permanode-detail tr>*:nth-child(3) {
|
|
color: #444;
|
|
text-align: center;
|
|
width: 0;
|
|
}
|
|
|
|
.cam-permanode-detail-delete-attribute {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.cam-permanode-detail td input[type=text] {
|
|
border: none;
|
|
font: inherit;
|
|
width: 100%;
|
|
}
|
|
|
|
.cam-permanode-detail-status {
|
|
background: #eee;
|
|
bottom: 1em;
|
|
left: 1em;
|
|
padding: 1em;
|
|
position: fixed;
|
|
}
|