imprint.css
2.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/**
* @package imprint an ownCloud app
* @category base
* @author Christian Reiner
* @copyright 2012-2013 Christian Reiner <foss@christian-reiner.info>
* @license GNU Affero General Public license (AGPL)
* @link information http://apps.owncloud.com/content/show.php?content=153220
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the license, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this library.
* If not, see <http://www.gnu.org/licenses/>.
*
*/
/**
* @file css/imprint.css
* @brief Style definitions of the apps view
* @author Christian Reiner
*/
/* some rules for the reference itself */
a.imprint-anchor{
margin: 0;
padding: 0 30px;
position: relative;
font-size: 100%;
font-weight: inherit;
}
#header a.imprint-anchor.header-left{
line-height: 40px;
color: #BFBFBF;
float: left;
top: 11px;
left: 150px;
font-weight: bold;
}
#header a.imprint-anchor.header-right{
line-height: 44px;
color: #BFBFBF;
float: right;
font-weight: bold;
}
#navigation a.imprint-anchor.navigation-top{
border: none;
color: 666;
}
#navigation a.imprint-anchor.navigation-bottom{
position: absolute;
bottom: 40px;
border: none;
color: 666;
border: 0;
}
/* some rules for the settings */
.imprint-option{
vertical-align: middle;
}
.imprint-option label{
display: inline-block;
width: 85px;
}
.imprint-option textarea{
min-width: 850px;
min-height: 70px;
}
.imprint-hint{
font-style: italic;
margin: 0 8.5px;
}
/* some rules for the 'dummy' content */
.imprint-factoid{
font-size: 160%;
font-weight: bold;
font-style: normal;
color: gray;
}
.imprint-suggestion{
margin: 4px;
font-size: 110%;
font-weight: light;
font-style: italic;
color: gray;
}
.imprint-explanation{
margin: 14px 0 28px;
font-size: 100%;
font-weight: normal;
font-style: normal;
color: black;
}
.imprint-reference{
color: blue;
text-decoration: underline;
}