/usr/share/ubiquity-slideshow/slides/link/base.css is in ubiquity-slideshow-lubuntu 83.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 | html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin:0;
padding:0;
border:0;
outline:0;
font-size: 100%;
font-style:normal;
text-decoration:none;
font-weight:normal;
vertical-align:baseline;
background:transparent;
}
ol, ul {
list-style:none;
}
html, body {
margin:0;
padding:0;
background-color:#F7F6F6;
font-family:'Ubuntu', 'UbuntuBeta', sans-serif;
font-size:12px;
line-height:1.4em;
color:#333333;
/* no reason to expose this extra stuff to the user */
-webkit-user-select:none;
-moz-user-select:none;
user-select:none;
cursor:default;
}
/*
Hyperlink-style text
*/
a {
color:#145E73;
text-decoration:none;
display:inline;
}
#slideshow {
position:absolute;
width:752px;
min-height:442px;
height:100%;
overflow:hidden;
}
#slideshow > div {
position:absolute;
width:100%;
height:100%;
}
.control-arrow {
display:block;
position:absolute;
z-index:100;
top:218px;
height:64px;
width:33px;
background-repeat:no-repeat;
cursor:pointer;
}
.control-arrow.disabled {
cursor:default;
}
.control-arrow:hover {
background-position: 0px -65px;
}
.control-arrow:active {
background-position: 0px -130px;
}
.control-arrow#prev-slide {
background-image:url('arrow-back.png');
left:0px;
}
.control-arrow#next-slide {
background-image:url('arrow-next.png');
left:719px; /* 752px - 33px */
}
/* Fixed container for a slide's title */
.header {
display:table; /* this is a bit evil, but it lets us vertically centre stuff */
position:absolute;
/* FIXME: better to use position:relative here and for #main.
Need to have a specific maximum height, though,
which isn't working with display:table */
top:0px;
width:100%;
height:68px;
background-color:#DCDCDC;
}
.header > .slidetitle {
display:table-cell;
/*margin:10px 25px 10px 25px;*/
padding:0px 25px;
vertical-align:middle;
font-size:20px; /* applies to all lines except first */
line-height:1em;
font-weight:normal;
color:#145E73;
}
.slidetitle:first-line {
font-size:36px; /* TODO: 24px? */
line-height:32px;
}
.main {
position:absolute;
top:70px; /* 68px + 2px margin */
bottom:2px;
left:2px;
right:2px;
min-height:370px; /* 442px (from #slideshow) - 70px - 2px */
/* move this to #slideshow if we don't want the background image to move with slides */
background-image:url('background.png');
}
/*
A slide's body text goes inside here.
Inner space is 224px wide.
*/
.main > .text {
position:absolute;
top:25px;
left:36px;
width:248px;
bottom:35px;
min-height:329px; /* 369 - 25 - 15 (for bottom) */
overflow:auto;
}
.text > div {
margin-bottom:8px;
padding:6px 12px;
background-color:#F7F6F6;
}
.text > div:last-child {
margin-bottom:0px;
}
.text > div > .subtitle {
padding-bottom:2px;
margin-bottom:5px;
font-size:inherit;
font-weight:normal;
text-decoration:none;
border-bottom:#333333 dotted 1px;
}
.featured ul {
display:table;
}
.featured li {
display:table-row;
}
.featured li > * {
padding-bottom:12px;
}
.featured li .icon {
display:table-cell;
width:24px;
height:auto;
padding-right:12px;
}
.featured li .caption {
display:table-cell;
vertical-align:middle;
}
.main > .screenshot {
position:absolute;
top:25px;
right:-2px; /* offsets 2px margin of .main */
-webkit-box-shadow:#999999 0px 0px 5px;
-moz-box-shadow:#999999 0px 0px 5px;
box-shadow:#999999 0px 0px 5px;
}
/*
This rule disables drag-and-drop for images. See bug #448703.
*/
img {
-webkit-user-drag:none;
}
/* RTL stuff */
.rtl {
direction:rtl;
}
.rtl .control-arrow#prev-slide {
background-image:url('arrow-next.png');
left:719px;
}
.rtl .control-arrow#next-slide {
background-image:url('arrow-back.png');
left:0px; /* 752px - 33px */
}
.rtl .main > .text {
left:auto;
right:36px;
}
.rtl .main > .screenshot {
right:normal;
left:-2px;
}
.rtl .featured li .icon {
padding-right:0px;
padding-left:12px;
}
|