Advertisement
xVeNoMiiZz

Tournament code

Oct 29th, 2014
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.44 KB | None | 0 0
  1. .tournament-wrapper {
  2. display: none;
  3. position: absolute;
  4. top: 0;
  5. left: 0;
  6. right: 0;
  7. height: 2em;
  8. line-height: 2em;
  9. text-align: center;
  10. border-bottom: 1px #fc4614 solid;
  11. }
  12.  
  13. .tournament-bracket {
  14. max-height: 200px;
  15. background: #0c2244;
  16. color: white;  
  17. border: 1px solid #fc4614;
  18. padding: 10px;
  19. overflow: hidden;
  20. font-size: 8pt;
  21. }  
  22.  
  23. .tournament-bracket-tree-node>rect {
  24. fill: #fc4614;
  25. stroke: white;
  26. }  
  27.  
  28. .tournament-title {
  29. background: #0c2244;
  30.   color: #fc4614;
  31.   font-weight: bold;
  32. }
  33.  
  34. .tournament-bracket-tree-node>text>a {
  35. fill: #0c2244;
  36. text-shadow: none;
  37. }
  38.  
  39. .tournament-bracket-tree-node>text>a:hover {
  40. fill: white;
  41. text-shadow: none;
  42. }
  43.    
  44. .tournament-bracket-tree-node-match-team {
  45. font-weight: bold;  
  46.     text-shadow: none
  47. }    
  48.  
  49. .tournament-bracket-tree-node>text {
  50.   font-size: 0.8em;
  51. text-anchor: middle;
  52. dominant-baseline: central;
  53. text-shadow: none;
  54. }  
  55.  
  56.  
  57. .tournament-bracket-tree-node-match-team {
  58. font-weight: bold;
  59. text-shadow: none;
  60. }
  61. .tournament-bracket-tree-node-match-team-draw, .tournament-bracket-tree-node-match-team-loss {
  62. fill: #0c2244;
  63. }
  64.      
  65. .tournament-bracket-tree-node-match-team-win {
  66. fill: white;
  67. }
  68.  
  69. .tournament-bracket-tree-link-active {
  70. stroke: white;
  71. stroke-width: 3px;
  72. }
  73.  
  74. a.ilink {
  75.   text-decoration: underline;
  76.   color: #fc4614;
  77.   text-shadow: 1px 1px black;
  78. }
  79.  
  80. a.ilink:hover {
  81. text-decoration: underline;
  82. color: white;
  83. text-shadow: 1px 1px black;
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement