mirror of
https://github.com/flynx/PortableMag.git
synced 2025-10-28 18:50:08 +00:00
43 lines
731 B
CSS
Executable File
43 lines
731 B
CSS
Executable File
/**********************************************************************
|
|
* magazine customization
|
|
*
|
|
**********************************************************************/
|
|
|
|
/*************************************** main structural elements ****/
|
|
.viewer {
|
|
background: gray;
|
|
}
|
|
|
|
.magazine > .cover {
|
|
background: white;
|
|
}
|
|
|
|
.article > .cover {
|
|
background: white;
|
|
}
|
|
|
|
.page {
|
|
background: silver;
|
|
|
|
font-family: Arial;
|
|
}
|
|
|
|
|
|
/*********************************************************************/
|
|
body {
|
|
font-family: arial;
|
|
}
|
|
|
|
.page a,
|
|
.page a:visited,
|
|
.page a:active {
|
|
color: blue;
|
|
}
|
|
.page a:hover {
|
|
color: red;
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************/
|