/usr/share/digikam/themes/cleanframes/black.css is in digikam-data 4:5.6.0-0ubuntu10.
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 | body {
background-color: #000000; /*background behind thumbnails, outside boxes*/
color: #000055; /*default text color*/
font-size: 14pt;
text-align: center;
font-family: Bitstream Vera Serif, serif;
margin: 0in;
padding: 0in;
}
a { /*links (album titles)*/
color: #FFFFFF;
text-decoration: none;
}
a:hover { /*links when mouse is over them (album titles)*/
color: #5555FF;
text-decoration: underline;
}
h1 { /*album title above thumbnails*/
padding-top: 0.1em;
color: #FFFFFF;
font-size: 14pt;
}
/* Collection page */
#collectionPage h1 {
margin-top: 12px;
}
#collectionPage ul { /*affects list of thumbnails*/
padding: 0;
padding-left: 5%;
text-align: center;
width: 95%
}
#collectionPage li { /*affects stuff in boxes with thumbnails*/
display: block;
float: left;
margin-left: 6px;
margin-top: 6px;
padding: 5px;
color: #000000;
font-size: 8pt;
background-color: #FFFFFF;
border: 1px solid #000000;
}
/* Blank Page */
#blankPage {
background-color: #FFFFFF;
}
/* Collect Page */
#collectPage { /*album titles at top*/
background-color: #333333;
font-size: 12pt;
padding-top: 0.5em;
margin: 0 auto;
width: 95%;
color: #AAAAAA; /*number of pics in collection*/
}
/* Image page */
#imagePage {
padding:.5em;
background-color:#FFFFFF; /*background color behind the big image*/
}
#caption { /*caption below photo*/
padding-bottom:1em;
color: #000000;
font-size: 16pt;
}
#imagePage img {
border: 1px solid #CECECE; /*border around picture*/
}
|