/usr/share/ubiquity-slideshow/slides/link/base.css is in ubiquity-slideshow-kubuntu 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 | html, body
{
margin:0;
padding:0;
font-family: ubuntu;
color:#000000;
}
/*
Hyperlink-style text
*/
a
{
color: #0088aa;
}
#slideshow
{
position:absolute;
width: 100%;
height: 100%;
overflow:hidden;
}
#slideshow > div {
position:absolute;
width:100%;
height:100%;
}
#debug-controls {
display:none;
position:absolute;
top:440px;
width:700px;
text-align:center;
}
#debug-controls input {
width:40px;
}
/*
Title block is positioned at the top of a slide.
*/
.title
{
position:absolute;
top:15px;
left:10px;
font-size:20px;
font-weight:bold;
color: #0f262f;
border-bottom: 1px solid #5b8595;
width: 100%;
padding:0;
margin:0;
}
/*
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;
bottom:0px;
right:10px;
z-index:11;
border:0px;
}
/*
#content expects to be contained in here. #main
creates a nice, plain surface upon which it can
appear :)
*/
.main
{
position:absolute;
top:50px;
left:0px;
padding-right:60px;
font-size:14px;
z-index:12;
}
/*
Slide's body text goes here. It appears right below
the title, at the top of the white area with heavy
margins around it.
*/
.main .content
{
padding-left:16px;
padding-right:16px;
}
.content ul
{
margin-top:0px;
padding-left:1.8em;
height:auto;
overflow:auto;
list-style-image:url("bullet-point.png");
}
.content li
{
padding:0.6em;
}
.content .special
{
position:absolute;
top:290px;
left:50px;
font-weight:bold;
}
.content img.inline
{
height:auto;
width:auto;
}
/*
This rule disables drag-and-drop for images. See bug #448703.
*/
img
{
-webkit-user-drag: none;
}
/* RTL stuff */
.rtl {
direction:rtl;
}
.rtl .title {
right:10px;
}
.rtl .icon {
left:10px;
right:auto;
}
.rtl .main {
right:0px;
padding-right:0px;
padding-left:60px;
}
.rtl .content ul {
list-style-image:url("bullet-point.rtl.png");
}
.rtl .content .special {
right:50px;
left:auto;
}
|