/usr/share/ubiquity-slideshow/slides/link/base.css is in ubiquity-slideshow-edubuntu 113.
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 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 | html, body {
margin:0;
padding:0;
background-color:#424242;
font-family:sans-serif;
color:#ffffff;
}
/*
Hyperlink-style text
*/
a {
color:#ffffff;
font-style:italic;
text-decoration:none;
}
#slideshow {
position:absolute;
width:798px;
height:465px;
overflow:hidden;
background-image:url('background.png');
background-repeat:no-repeat;
background-position:top right;
/* background-color:#ffffff; */
/*cursor:default;*/
}
#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:765px; /* 752px - 33px */
}
#debug-controls {
display:none;
position:absolute;
top:540px;
width:700px;
text-align:center;
}
#debug-controls input {
width:40px;
}
/* fixed container to align title */
.header {
position:absolute;
top:-15px;
height:225px;
}
/* title block is positioned at the bottom of its parent, which should be .header */
.title {
position:absolute;
bottom:12px;
width:510px; /* the ideal width would leave more space on the right */
left:36px; /* matches padding of .content and .content ul: 16 + 20 */
font-size:20px; /* applies to all lines except first */
font-weight:normal;
letter-spacing:-1px;
color:#ffffff;
padding:0px;
margin:0px;
}
.title:first-line {
font-size:38px;
}
.welcometitle {
width: 100%;
text-align: center;
top: 45px;
position: absolute;
letter-spacing:-2px;
}
.welcometitle:first-line {
font-size:60px;
}
/*
Typically an image. This is positioned at the top
right of a slide and is given a size of 64x64 pixels.
*/
.icon {
position:absolute;
width:auto;
height:auto;
top:30px;
left:577px;
z-index:11;
border:0px;
}
/*.icon.exact {
top:69px;
left:549px;
width:215px;
height:auto;
}*/
/*
.content expects to be contained in here. .main
creates a nice, plain surface upon which it can
appear, spaced appropriately from .title.
*/
.main {
position:absolute;
top:160px;
left:0px;
width:100%;
height:180px;
padding-right:60px;
z-index:12;
}
/*
Slide's body text goes inside here.
*/
.content {
padding:16px;
padding-top:62px;
font-size:14px;
color:#ffffff;
}
.content ul {
margin-top:0px;
padding-left:60px;
width:650px;
height:223px;
overflow:auto;
list-style-type:none;
list-style-image:url("bullet-point.png");
}
.content li {
padding:8px;
padding-left:0px;
}
/* hack to get the text wrapping around the icon. If we could do this for
ul :first-line, there would be less room for failure. */
.content.wrap-top li:first-child {
width:550px;
}
.content .footer {
position:relative;
width:100%;
padding:0px;
margin:0px;
bottom:10px;
text-align:right;
font-weight:bold;
color:#c3c3c3;
}
.content img.inline {
height:14px;
width:auto;
}
/*
The menu-item style is a descriptive aid for pointing the end user at,
for example, a place in either the system menu or an application menu.
This way we can provide clear visual cues with minimal babbling.
*/
.menu-item {
display:inline-block;
border-radius:3px;
-webkit-border-radius:3px;
-moz-border-radius:3px;
height:16px;
padding:1px;
padding-left:3px;
padding-right:3px;
border-style:solid;
border-width:1px;
border-color:#a89a8d;
background-color:#f7f5f3;
}
/*
This rule applies to an img of class menu-arrow. It appears as a nice
looking arrow that can separate items in a menu much like how submenus
look in Ubuntu's GTK theme.
*/
.menu-item img.menu-arrow {
display:inline-block;
content:url('menu-arrow.png');
padding-left:2px;
padding-right:5px;
}
/*
This rule disables drag-and-drop for images. See bug #448703.
*/
img {
-webkit-user-drag: none;
}
/* RTL stuff */
.rtl {
direction:rtl;
}
/* TODO: NEED reversed title and icon for RTL */
/*.rtl .title {
right:10px;
}*/
/*.rtl .icon {
left:10px;
right:auto;
}*/
.rtl .main {
right:0px;
padding-right:0px;
padding-left:60px;
}
/*.rtl .content .footer {
text-align:left;
} */
|