source: vlo/branches/vlo-3.0/vlo-web-app/src/main/html/style/vlo-record.css @ 4399

Last change on this file since 4399 was 4399, checked in by twagoo, 10 years ago

query link on attribute values in record mockup

File size: 2.9 KB
Line 
1/*
2Copyright (C) 2014 CLARIN
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 3 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program.  If not, see <http://www.gnu.org/licenses/>.
16*/
17/*
18    Created on : Jan 27, 2014, 11:42:13 AM
19    Author     : twagoo
20*/
21
22#recordnavigation p a, #recordcontext p a {
23    padding: 0;
24}
25
26#recordnavigation ul{
27    margin: 0px;
28    padding: 0px;
29}
30
31#recordnavigation ul li {
32    list-style: none;
33    padding: 0px;
34    margin: 0px;
35}
36
37ul#recordcontextfacets {
38    margin-top: 0px;
39}
40
41ul#recordcontextfacets li {
42    margin: 0px 0px 4px 16px;
43}
44
45#recordreferences {
46    margin-top: 1em;
47}
48
49#recordreferences div {
50    margin-top: 1em;
51}
52
53#recordreferences div div {
54    /* div that has resource link or landing page */
55    min-height: 32px;
56    padding-left: 36px;
57}
58
59#recordreferences div div a, #recordreferences div div a:hover {
60    display: inline-block;
61    padding-top: .5em;
62}
63
64#content.record {
65    width: 697px;
66}
67
68/* record title with prev/next links */
69
70h1#recordtitle {
71    max-width: 80%;
72    clear: left;
73}
74
75#recordprevnext {
76    width: 15%;
77    float: right;
78    clear: right;
79}
80
81#recorddetails, #recordtechnicalattributes {
82    padding-right: 2em;
83    margin-top: 1em;
84}
85
86table.recorddetailstable {
87    border-collapse: collapse;
88    border-top: 1px solid #999;
89}
90
91table.recorddetailstable td, table.recorddetailstable th {
92    border-bottom: 1px solid #999;
93}
94
95table.recorddetailstable td.attribute {
96    width: 25%;
97    vertical-align: top;
98}
99
100a.recordfacetselect span, a.recordattributeinfo span {
101    display: none;
102}
103
104a.recordfacetselect:after {
105    content: "→";
106}
107
108a.recordattributeinfo:after {
109    content: "ℹ";
110}
111
112/* icons for record references */
113#recordlandingpage div {
114    background: url('Crystal_Clear_mimetype_readme.png') no-repeat;
115}
116
117#recordresources div.writtenresource {
118    background: url('text-x-generic.png') no-repeat;
119}
120
121#recordresources div.audioresource {
122    background: url('audio-x-generic.png') no-repeat;
123}
124
125#recordresources div.videoresource {
126    background: url('video-x-generic.png') no-repeat;
127}
128
129#recordresources div.annotationresource {
130    background: url('text-x-log.png') no-repeat;
131}
132
133#recordtechnicaldetailstoggle{
134    margin-top: 2em;
135    padding-bottom: 0px;
136}
137
138#recordtechnicaldetails {
139    border-top: 1px dashed;
140    padding-top: 1em;
141}
142
143#recordcmdi {
144    margin-top: 2em;
145}
146
147#recordcmdi article {
148    position: relative;
149    max-height: 400px;
150    overflow: auto;
151    margin-top: 1em;
152}
Note: See TracBrowser for help on using the repository browser.