aboutsummaryrefslogtreecommitdiff
path: root/www/package-details-body.css
blob: a69a9398c090634e2d2122ae97d22f35593978cc (plain)
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
#heading
{
  display: table;
  table-layout: fixed;
  width: 100%;
  border: none;
}

/* Since it is a link to itself, it will always be visited. */
#heading a:visited {color: #006fbf;}
#heading a:hover, h1 a:active {color: #0087e7; text-decoration: none;}

h1
{
  font-family: monospace;
  font-weight: normal;
  font-size: 2.074em;
  line-height: 1.4em;

  margin: .6em 0 .6em 0;

  display: table-cell;
  text-align: left;
}

#heading > a
{
  font-size: 1.32em;
  line-height: 1.4em;

  display: table-cell;
  text-align: right;
  width: 3.2em;
  vertical-align: middle;
}

h2
{
  font-style: italic;
  font-weight: normal;
  font-size: 1.32em;
  line-height: 1.4em;

  margin: .4em 0 .4em 0;
}

h1, h2
{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Re-styling for full page variant. */

.full h2
{
  white-space: normal;
}

/*
 * Description (plain text).
 *
 * This is a <pre> block that fits lines up to 80 characters long and
 * wraps longer ones.
 */
#description.plain pre
{
  font-size: 0.85em;
}

/*
 * Description (Markdown).
 *
 * These are descendants of the <div> block containing the result of
 * Markdown-to-HTML translation.
 *
 * Note that the Markdown code blocks are translated into the
 * <pre><code>...<code/></pre> element construct.
 */
#description.markdown h1,
#description.markdown h2
{
  white-space: normal;
}

/* code-box.css */
#description.markdown :not(pre) > code
{
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 0.2em;
  padding: .2em .32em .18em .32em;
}

/* pre-box.css */
#description.markdown pre
{
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 0.2em;
  padding: .8em .4em .8em .4em;
  margin: 2em -.4em 2em -.4em; /* Use paddings of #content. */
}

#description.markdown pre > code
{
  font-size: inherit;
}

#description.markdown .error {color: #ff0000;}

/*
 * Package details table.
 */
#package
{
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
#package th {width: 7.6em;}

/*
 * Search form (based on form-table)
 */
#search-txt, #search-txt input {width: 100%;}
#search-btn {padding-left: .4em;}

/*
 * Version count.
 */
#count
{
  font-size: 1.32em;
  line-height: 1.4em;
  color: #555;

  margin: 1.2em 0 0 0;
}

/*
 * Version table.
 */
table.version
{
  margin-top: .8em;
  margin-bottom: .8em;

  padding-top: .4em;
  padding-bottom: .4em;

}
table.version:nth-child(even) {background-color: rgba(0, 0, 0, 0.07);}

table.version th {width: 7.6em;}

table.version tr.version td .value,
table.version tr.priority td .value,
table.version tr.repository td .value,
table.version tr.depends td .value,
table.version tr.requires td .value
{
  /* <code> style. */
  font-family: monospace;
  font-size: 0.94em;
}