Guest User

Untitled

a guest
May 25th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. /* Círculos de colores numerados */
  2. span.red {
  3. background: red;
  4. border-radius: 0.8em;
  5. -moz-border-radius: 0.8em;
  6. -webkit-border-radius: 0.8em;
  7. color: #ffffff;
  8. display: inline-block;
  9. font-weight: bold;
  10. line-height: 1.6em;
  11. margin-right: 15px;
  12. text-align: center;
  13. width: 1.6em;
  14. }
  15.  
  16. span.grey {
  17. background: #cccccc;
  18. border-radius: 0.8em;
  19. -moz-border-radius: 0.8em;
  20. -webkit-border-radius: 0.8em;
  21. color: #fff;
  22. display: inline-block;
  23. font-weight: bold;
  24. line-height: 1.6em;
  25. margin-right: 15px;
  26. text-align: center;
  27. width: 1.6em;
  28. }
  29.  
  30. span.green {
  31. background: #5EA226;
  32. border-radius: 0.8em;
  33. -moz-border-radius: 0.8em;
  34. -webkit-border-radius: 0.8em;
  35. color: #ffffff;
  36. display: inline-block;
  37. font-weight: bold;
  38. line-height: 1.6em;
  39. margin-right: 15px;
  40. text-align: center;
  41. width: 1.6em;
  42. }
  43.  
  44. span.blue {
  45. background: #5178D0;
  46. border-radius: 0.8em;
  47. -moz-border-radius: 0.8em;
  48. -webkit-border-radius: 0.8em;
  49. color: #ffffff;
  50. display: inline-block;
  51. font-weight: bold;
  52. line-height: 1.6em;
  53. margin-right: 15px;
  54. text-align: center;
  55. width: 1.6em;
  56. }
  57.  
  58. span.pink {
  59. background: #EF0BD8;
  60. border-radius: 0.8em;
  61. -moz-border-radius: 0.8em;
  62. -webkit-border-radius: 0.8em;
  63. color: #ffffff;
  64. display: inline-block;
  65. font-weight: bold;
  66. line-height: 1.6em;
  67. margin-right: 15px;
  68. text-align: center;
  69. width: 1.6em;
  70. }
  71.  
  72. <h1><span class="grey">1</span>Un circulo gris con un número interior</h1>
  73.  
  74. <h1><span class="red">2</span>Un circulo rojo con un número interior</h1>
  75.  
  76. <h1><span class="blue">3</span>Un circulo azul con un número interior</h1>
  77.  
  78. <h1><span class="green">4</span>Un circulo verde con un número interior</h1>
  79.  
  80. <h1><span class="pink">5</span>Un circulo rosa con un número interior</h1>
Add Comment
Please, Sign In to add comment