Advertisement
Guest User

ednevnik

a guest
Jan 19th, 2017
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.01 KB | None | 0 0
  1. @namespace url(http://www.w3.org/1999/xhtml);
  2.  
  3. @-moz-document url("file:///C:/Users/PC1/Desktop/ctfu%20univerrsity.html") {
  4.  
  5. /* Prvi value(div) = Redni broj predmeta s vrha PLUS 2 [i.e Hrvatski(3), Engleski(5), etc.]*/
  6. /* Predzadnji value(tr) = Redni broj row-a [i.e Knjizevnost(1), Lektira(2), etc.] */
  7. /* Zadnji value(td) = Redni broj column-a(mjeseca) PLUS 1 [i.e 9.mj(2), 10.mj(3), etc.] */
  8.  
  9.    
  10. /********************/
  11. /******HRVATSKI******/
  12. /********************/
  13.    
  14. #courses div:nth-child(3) table:nth-child(1) tbody tr:nth-child(3) td:nth-child(2)
  15. {
  16.     color: red;
  17.     font-size:0px;
  18. }
  19.    
  20.    
  21. #courses div:nth-child(3) table:nth-child(1) tbody tr:nth-child(3) td:nth-child(2):after
  22. {
  23.     color: red;
  24.     content: '5';
  25.     font-size:20px;
  26. }  
  27.    
  28. /********************/
  29. /******ENGLESKI******/
  30. /********************/
  31.  
  32. /*ocjena u tablici*/
  33. #engleski-jezik + div > div > div > table:first-child > tbody:nth-child(2) > tr:nth-child(1) td:nth-child(3)
  34. {
  35.     color: red;
  36.     font-size:0px;
  37. }
  38.    
  39. #engleski-jezik + div > div > div > table:first-child > tbody:nth-child(2) > tr:nth-child(1) td:nth-child(3):after
  40. {
  41.     color: red;
  42.     content: '15';
  43.     font-size:21px;
  44. }  
  45.    
  46. /*-biljeske uz ocjene-*/
  47. /*1-biljeska*/
  48. #engleski-jezik + div > div > div > table:nth-child(4) > tbody tr:nth-child(2) td:nth-child(2)
  49. {
  50.     color: red;
  51.     font-size:0px;
  52. }
  53.    
  54. #engleski-jezik + div > div > div > table:nth-child(4) > tbody tr:nth-child(2) td:nth-child(2):after
  55. {
  56.     color: red;
  57.     content: 'Druga pisana provjera 92%';
  58.     font-size:22px;
  59. }
  60.  
  61. /*2-biljeska_ocjena*/  
  62. #engleski-jezik + div > div > div > table:nth-child(4) > tbody tr:nth-child(2) td:nth-child(3)
  63. {
  64.     color: red;
  65.     font-size:0px;
  66. }
  67.    
  68. #engleski-jezik + div > div > div > table:nth-child(4) > tbody tr:nth-child(2) td:nth-child(3):after
  69. {
  70.     color: red;
  71.     content: 'RAC';
  72.     font-size:23px;
  73. }
  74.    
  75. /***********************/
  76. /*****KRAJ ENGLESKI*****/
  77. /***********************/
  78.    
  79.    
  80.    
  81. #hrvatski-jezik + div > div > div > div:nth-child(2):after
  82. {
  83.     background-color: red;
  84.     content: '44';
  85. }
  86.    
  87.  
  88. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement