cantichan

stylesheet_melee_css

Aug 5th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. @font-face {
  2. font-family: 'The Bold Font';
  3. src: url('theboldfont - score font.ttf') format('truetype');
  4.  
  5. }
  6. @font-face {
  7. font-family: 'Candara';
  8. src: url('Candarab.ttf') format('truetype');
  9.  
  10. }
  11.  
  12. @mixin stroke($stroke, $color) {
  13. text-shadow: stroke($stroke, $color);
  14. }
  15.  
  16. body {
  17. margin:0px;
  18. background-color: rgba(0, 0, 0, 0);
  19. font-family: 'Candara';
  20. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000;
  21. color:#FFFFFF;
  22. }
  23.  
  24. #board {
  25. position:absolute;
  26. top:0px;
  27. left:0px;
  28. width:1280px;
  29. height:200px;
  30. background-image:url('../images/scoreboard.png');
  31. }
  32.  
  33. #pName1 {
  34. position:absolute;
  35. left:125px;
  36. top:21px;
  37. width:380px;
  38. font-size:30px;
  39. text-align:center;
  40. color:#FFFFFF;
  41. text-transform: uppercase;
  42. }
  43. #pName2 {
  44. position:absolute;
  45. left:775px;
  46. top:21px;
  47. width:380px;
  48. font-size:30px;
  49. text-align:center;
  50. color:#FFFFFF;
  51. text-transform: uppercase;
  52. }
  53. #pScore1 {
  54. position:absolute;
  55. left:55px;
  56. top:22px;
  57. width:47px;
  58. font-size:30px;
  59. text-align:center;
  60. font-family: 'The Bold Font';
  61. }
  62. #pScore2 {
  63. position:absolute;
  64. left:1175px;
  65. top:22px;
  66. width:47px;
  67. font-size:30px;
  68. text-align:center;
  69. font-family: 'The Bold Font';
  70. }
  71.  
  72. #pFlag1 {
  73. position:absolute;
  74. left:76px;
  75. bottom:15px;
  76. }
  77.  
  78. #pFlag2 {
  79. position:absolute;
  80. left:1161px;
  81. bottom:15px;
  82. }
  83.  
  84. #mText3 {
  85. color: #FFFFFF;
  86. position:absolute;
  87. left:560px;
  88. top:15px;
  89. width:160px;
  90. font-size:20px;
  91. font-family: 'Candara';
  92. text-align:center;
  93. opacity:0;
  94. overflow: hidden;
  95. white-space: nowrap;
  96. text-transform: uppercase;
  97. }
  98. #mText4 {
  99. color: #FFFFFF;
  100. position:absolute;
  101. left:560px;
  102. top:35px;
  103. width:160px;
  104. font-size:15px;
  105. font-family: 'Candara';
  106. text-align:center;
  107. opacity:0;
  108. overflow: hidden;
  109. white-space: nowrap;
  110. text-transform: uppercase;
  111. }
Advertisement
Add Comment
Please, Sign In to add comment