Guest User

Untitled

a guest
Jan 21st, 2019
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.22 KB | None | 0 0
  1. <div class="song">
  2. <table border=0 cellpadding=0 cellspacing=0 class="songline">
  3. <tr class="songlyricchord"><td></td><td>&nbsp;C </td><td>&nbsp;C7 </td></tr>
  4. <tr class="songlyricline"><td>1. </td><td>Moje malé svetielko, chcem, aby svietilo. (</td> <td>hey hey hey)</td></tr></table>
  5. </div>
  6.  
  7. /* chordpro CSS for the PmWiki Chordpro recipe heavily modified by Otto Bolyós
  8. See http://pmwiki.org/wiki/Cookbook/ChordPro
  9. Copyright 2006, 2007, 2008, 2009 Simon Davis
  10. This program is free software; you can redistribute it and/or modify
  11. it under the terms of the GNU General Public License, Version 2, as
  12. published by the Free Software Foundation.
  13. http://www.gnu.org/copyleft/gpl.html
  14. This program is distributed in the hope that it will be useful,
  15. but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. GNU General Public License for more details.
  18. v0.3 2009-10-01 add songversion, songnewpage, page-break, line spacing
  19. v0.2 2009-08-20 significant changes to make work properly
  20. v0.1 2008-05-26 spacing between refrains
  21. v0.0 2006-12-27 to go with Chordpro recipe version 0.1
  22. */
  23. body {
  24. background-color:#fff;
  25. margin-top:0px;
  26. margin-left: 10pt;
  27. margin-right: 10pt;
  28. }
  29.  
  30. @font-face {
  31. font-family: "Linux Libertine Display G";
  32. src: url("fnts/linlibdg.woff") format('woff');
  33. }
  34.  
  35. @font-face {
  36. font-family: "Linux Libertine G";
  37. src: local('Linux Libertine G'), url("fnts/linlibg_r.woff") format('woff');
  38. font-style: normal;
  39. }
  40.  
  41. @font-face {
  42. font-family: "Linux Libertine G";
  43. src: url("fnts/linlibg_z.woff") format('woff');
  44. font-weight: 600
  45. }
  46.  
  47. @font-face {
  48. font-family: "Linux Libertine G";
  49. src: url("fnts/linlibg_b.woff") format('woff');
  50. font-weight: bold;
  51. }
  52.  
  53. @font-face {
  54. font-family: "Linux Libertine G";
  55. src: url("fnts/linlibg_zi.woff") format('woff');
  56. font-weight: 600;
  57. font-style: italic;
  58. }
  59.  
  60. @font-face {
  61. font-family: "Linux Libertine G";
  62. src: url("fnts/linlibg_bi.woff") format('woff');
  63. font-weight: bold;
  64. font-style: italic;
  65. }
  66.  
  67. @font-face {
  68. font-family: "Linux Libertine G";
  69. src: url("fnts/linlibg_r.woff") format('woff');
  70. font-style: italic;
  71. }
  72.  
  73. @font-face {
  74. font-family: "Ubuntu Mono";
  75. src: url("fnts/ubuntum_bi.woff") format('woff');
  76. font-style: italic;
  77. font-weight: bold;
  78. }
  79.  
  80. @font-face {
  81. font-family: "Ubuntu Mono";
  82. src: url("fnts/ubuntum_b.woff") format('woff');
  83. font-weight: bold;
  84. }
  85.  
  86. @font-face {
  87. font-family: "Ubuntu Mono";
  88. src: url("fnts/ubuntum_ri.woff") format('woff');
  89. font-style: italic;
  90. }
  91.  
  92. @font-face {
  93. font-family: "Ubuntu Mono";
  94. src: url("fnts/ubuntum_r.woff") format('woff');
  95. }
  96.  
  97. .nav a:hover, .logotext a:hover {
  98.  
  99. /* color: #316676;*/
  100.  
  101. text-decoration: none;
  102. text-shadow: 0 0 20px #f3f3f3;
  103. color: #aaf;
  104. /* text-shadow: none;*/
  105. -webkit-transition: 250ms linear 0s;
  106. -moz-transition: 250ms linear 0s;
  107. -o-transition: 250ms linear 0s;
  108. transition: 250ms linear 0s;
  109. outline: 0 none;
  110. }
  111.  
  112. a:hover {
  113. text-decoration:underline;
  114. }
  115.  
  116. a:link {
  117. text-decoration: none;
  118. color:#2795B6;
  119.  
  120. }
  121.  
  122. a:visited {
  123. text-decoration: none;
  124. color:#2795B6;
  125.  
  126. }
  127.  
  128. a:active {
  129. text-decoration: none;
  130. }
  131.  
  132. /* menu */
  133. .menu {
  134. width:100%;
  135. height:50px;
  136. display:block;
  137. position:absolute;
  138. top:0;
  139. left:0;
  140. background:#000;
  141. color:#fff;
  142. font-family: "Linux Libertine G";
  143. font-size: 14pt;
  144. }
  145.  
  146. .logo {
  147. float:left;
  148. }
  149.  
  150.  
  151. .logotext, .logotext a:link {
  152. text-decoration: none;
  153. color: #fff; /* keep the color */
  154. margin-top: 0px;
  155. padding-top: 0px;
  156.  
  157. }
  158.  
  159. .nav {
  160. float:right;
  161. margin-right:10px;
  162. }
  163.  
  164. .nav ul li {
  165. list-style:none;
  166. float:left;
  167. padding-top: 0px;
  168. margin-top: 0px;
  169. padding-left: 10px;
  170. padding-right: 10px;
  171. }
  172.  
  173. .logo ul li {
  174. list-style:none;
  175. float:left;
  176. padding-top: 0px;
  177. margin-top: 0px;
  178. padding-left: 0px;
  179. padding-right: 10px;
  180. }
  181.  
  182.  
  183. .title h1 { /* h1 */
  184. font-size: 25pt;
  185. text-align: center;
  186. font-family: "Linux Libertine G", serif;
  187. -moz-font-feature-settings: "case", "cpsp", "liga", "locl", "onum", "pnum", "ss01", "ss02", "ss04", "ss05", "dash", "itlc", "lith", "minu", "quot", "sa01", "sa04", "sa06", "sa08", "thou", "frsp", "smcp";
  188. text-decoration: underline;
  189. padding-bottom: 15px;
  190. padding-top: 0px;
  191. margin-top: 0px;
  192. }
  193.  
  194. .espievatko {
  195. font-family: "Linux Libertine G", serif;
  196. text-align: center;
  197. font-size: 70pt;
  198. -moz-font-feature-settings: "case", "cpsp", "liga", "locl", "onum", "pnum", "ss01", "ss02", "ss04", "ss05", "dash", "itlc", "lith", "minu", "quot", "sa01", "sa04", "sa06", "sa08", "thou", "frsp", "smcp";
  199. margin-top:20px;
  200. margin-bottom:28px;
  201. }
  202.  
  203. .e {
  204. -moz-font-feature-settings: "case", "cpsp", "liga", "locl", "onum", "pnum", "ss01", "ss02", "ss04", "ss05", "dash", "itlc", "lith", "minu", "quot", "sa01", "sa04", "sa06", "sa08", "thou", "frsp";
  205. color: #FF0000;
  206. }
  207.  
  208. p {
  209. font-size: 14pt;
  210. text-align: justify;
  211. font-family: "Linux Libertine G", serif;
  212. -moz-font-feature-settings: "case", "cpsp", "liga", "locl", "onum", "pnum", "ss01", "ss02", "ss04", "ss05", "dash", "itlc", "lith", "minu", "quot", "sa01", "sa04", "sa06", "sa08", "thou", "frsp";
  213. }
  214.  
  215. .basic {
  216. font-size: 14pt;
  217. text-align: justify;
  218. font-family: "Linux Libertine G", serif;
  219. -moz-font-feature-settings: "case", "cpsp", "liga", "locl", "onum", "pnum", "ss01", "ss02", "ss04", "ss05", "dash", "itlc", "lith", "minu", "quot", "sa01", "sa04", "sa06", "sa08", "thou", "frsp";
  220. }
  221.  
  222. .small {
  223. font-size: 10pt;
  224. font-style: italic; /* this one does not work, donno why */
  225. }
  226.  
  227. .mono, ::-moz-placeholder, ::-o-placeholder, ::-webkit-placeholder, ::placeholder {
  228. font-family: "Ubuntu Mono";
  229. font-size: 11pt;
  230. }
  231.  
  232.  
  233. .col2 {
  234. -webkit-column-count:2;
  235. -moz-column-count:2;
  236. column-count:2;
  237. column-gap:40px;
  238. -moz-column-gap:60px; /* Firefox */
  239. -webkit-column-gap:40px; /* Safari and Chrome */
  240. }
  241.  
  242. .break {
  243. -webkit-page-break-after: column;
  244. -moz-page-break-after: column;
  245. -o-page-break-after: column;
  246. -ms-page-break-after: column;
  247. page-break-after: column;
  248. }
  249.  
  250. .texty {
  251. width: 100%;
  252. min-height: 180px;
  253. max-height: 400px;
  254. resize: vertical;
  255. }
  256.  
  257. .search {
  258. -moz-border-radius:5px;
  259. width: 97%;
  260. }
  261.  
  262. .cislo {
  263. width: 40pt;
  264. }
  265.  
  266. .white {
  267. color: #fff !important;
  268. }
  269.  
  270. .italic {
  271. font-style: italic !important;
  272. }
  273.  
  274. td {
  275. /* padding-right: 2px;*/
  276. /* cell-padding-right: 4px*/
  277. border-spacing: 10px;
  278. border-collapse: separate;
  279. }
  280.  
  281. .terminal {
  282. font-family: "Ubuntu Mono"
  283. /* background-color: #999999 */
  284. }
  285.  
  286. .th {
  287. font-family: "Linux Libertine G", serif;
  288. -moz-font-feature-settings: "case", "cpsp", "liga", "locl", "onum", "pnum", "ss01", "ss02", "ss04", "ss05", "dash", "itlc", "lith", "minu", "quot", "sa01", "sa04", "sa06", "sa08", "thou", "frsp";
  289. text-align: left;
  290. }
  291.  
  292. .songtitle { /* h2 */
  293. font-size: 16pt;
  294. text-align: left;
  295. font-family: "Linux Libertine G", serif;
  296. -moz-font-feature-settings: "case", "cpsp", "liga", "locl", "onum", "pnum", "ss01", "ss02", "ss04", "ss05", "dash", "itlc", "lith", "minu", "quot", "sa01", "sa04", "sa06", "sa08", "thou", "frsp", "smcp";
  297. text-decoration: underline;
  298. line-height:90%
  299. }
  300.  
  301. .songsubtitle { /* h3 */
  302. font-family: "Ubuntu Mono", serif;
  303. font-style: italic;
  304. font-size: 10pt;
  305. line-height:0%;
  306. text-indent: 50px;
  307. }
  308. .songalbum { /* div */
  309. font-family: "Linux Libertine G", serif;
  310. -moz-font-feature-settings: "case", "cpsp", "liga", "locl", "onum", "pnum", "ss01", "ss02", "ss04", "ss05", "dash", "itlc", "lith", "minu", "quot", "sa01", "sa04", "sa06", "sa08", "thou", "frsp";
  311. color: black;
  312. page-break-inside: avoid;
  313. }
  314. .song { /* div around entire markup*/
  315. background-color: White;
  316. }
  317. .songchorus { /* div, to highlight chorus */
  318. /* padding-left: 1.5em; */ /* indent chorus */
  319. font-family: "Linux Libertine G", serif;
  320. -moz-font-feature-settings: "case", "cpsp", "liga", "locl", "onum", "pnum", "ss01", "ss02", "ss04", "ss05", "dash", "itlc", "lith", "minu", "quot", "sa01", "sa04", "sa06", "sa08", "thou", "frsp";
  321. color: black;
  322. page-break-inside: avoid;
  323. }
  324. .songtab { /* div, for tablature */
  325. font-family: monospace;
  326. font-size: 90%;
  327. line-height: 90%;
  328. white-space: pre;
  329. page-break-inside: avoid;
  330. }
  331. .songline {
  332. /* table, a chord and a lyrics line */
  333. empty-cells: show;
  334. margin: 0em;
  335. padding: 0em;
  336. padding-top: 0.1em;
  337. padding-bottom: .1em;
  338. page-break-inside: avoid;
  339. }
  340. .songlyricchord, /* tr, chord line (above) */
  341. .songlyricline { /* tr, lyric line (below) */
  342. margin: 0em;
  343. padding: 0em;
  344. page-break-inside: avoid;
  345. }
  346. .songlyricchord td /* line element containing one chord */ {
  347. padding-top: 0.1em;
  348. }
  349. .songlyricline td { /* line element containing lyrics for one chord */
  350. font-family: "Linux Libertine G", serif;
  351. -moz-font-feature-settings: "case", "cpsp", "liga", "locl", "onum", "pnum", "ss01", "ss02", "ss04", "ss05", "dash", "itlc", "lith", "minu", "quot", "sa01", "sa04", "sa06", "sa08", "thou", "frsp";
  352. background-color: white;
  353. margin: 0em;
  354. padding: 0em;
  355. white-space: pre;
  356. font-size: 16pt;
  357. line-height: 90%;
  358. }
  359. .songlyricchord td { /* specific chord formatting */
  360. font-family: "Linux Libertine G", serif;
  361. -moz-font-feature-settings: "case", "cpsp", "liga", "locl", "onum", "pnum", "ss01", "ss02", "ss04", "ss05", "dash", "itlc", "lith", "minu", "quot", "sa01", "sa04", "sa06", "sa08", "thou", "frsp";
  362. color: black;
  363. font-weight: 600;
  364. font-size: 12pt;
  365. }
  366. .songlyricline td { /* specific lyrics formatting */
  367. font-family: "Linux Libertine G", serif;
  368. -moz-font-feature-settings: "case", "cpsp", "liga", "locl", "onum", "pnum", "ss01", "ss02", "ss04", "ss05", "dash", "itlc", "lith", "minu", "quot", "sa01", "sa04", "sa06", "sa08", "thou", "frsp";
  369. color: black;
  370. font-size: 12pt;
  371. }
  372. .songcomment { /* div around comments of all types*/
  373. color: black;
  374. font-family: "Ubuntu Mono";
  375. font-style: italic;
  376. font-size: 10pt;
  377. page-break-inside: avoid;
  378. }
  379. .songcommentsimple, .songcommentitalic, .songcommentbox { /* for span around comments of all types*/
  380. background-color: white;
  381. }
  382. .songcommentsimple { /* span specific comment formatting */
  383. }
  384. .songcommentitalic { /* span specific comment formatting */
  385. font-style: italic;
  386. }
  387. .songcommentbox { /* span specific comment formatting */
  388. border: 1px solid black;
  389. padding-left: 0.2em;
  390. padding-right: 0.2em;
  391. }
  392. .songdebug { /* span, for debug output */
  393. font-size: x-small;
  394. color: Red;
  395. }
  396. .songmessage { /* span, eg unknown directive */
  397. font-weight: bolder;
  398. font-size: smaller;
  399. color: black;
  400. }
  401. .songversion { /* span, for version display */
  402. font-size: smaller;
  403. color: black;
  404. }
  405. .songnewpage { /* div, some browsers may action this formatting */
  406. page-break-after: always; /* ask browser to start a new page */
  407. clear: both; /* clear content before page break */
  408. }
  409. /* end of chordpro.css */
  410.  
  411. .songlyricline td.italic {
  412. font-style: italic;
  413. }
  414.  
  415. .songlyricline td:last-child {
  416. font-style: italic;
  417. }
  418.  
  419. @font-face {
  420. font-family: "kurziva";
  421. src: url("fnts/linlibg_i.woff") format('woff');
  422. font-style: italic;
  423. }
  424.  
  425. .songlyricline td i {
  426. font-family: kurziva;
  427. }
Add Comment
Please, Sign In to add comment