Advertisement
Guest User

Untitled

a guest
Mar 18th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. <link href="https://fonts.googleapis.com/css?family=Oswald" rel="stylesheet">
  2.  
  3. <style>
  4. .online {
  5. width:auto;
  6. height:auto;
  7. background-color: #7af442;
  8. font-family: 'Oswald', sans-serif;
  9. color: white;
  10. font-weight: bold;
  11. font-size: 1em;
  12. padding: 2px 5px;
  13. border-radius: 3.5px 3.5px;
  14. box-shadow: 2px 2px 2px grey;
  15. margin: 5px;
  16. vertical-align: middle;
  17. }
  18.  
  19. .offline {
  20. width:auto;
  21. height:auto;
  22. font-family: 'Oswald', sans-serif;
  23. background-color: red;
  24. color: white;
  25. font-weight: bold;
  26. font-size: 1em;
  27. padding: 2px 5px;
  28. border-radius: 3.5px 3.5px;
  29. box-shadow: 2px 2px 2px grey;
  30. margin: 5px;
  31. }
  32.  
  33. .onlinedot {
  34. box-shadow: 2px 2px 2px grey;
  35. font-size: 1em;
  36. color: white;
  37. padding-bottom: 5px;
  38. padding-top: 2px;
  39. vertical-align: middle;
  40. height: 20px;
  41. width: 20px;
  42. background-color: #7af442;
  43. border-radius: 20%;
  44. display: inline-block;
  45. text-align: center;
  46. opacity: 1;
  47. animation: fade 2s linear;
  48. animation-iteration-count: infinite;
  49. }
  50. @keyframes fade {
  51. 0%,100% { opacity: 0 }
  52. 50% { opacity: 1 }
  53. }
  54.  
  55. .offlinedot {
  56. box-shadow: 2px 2px 2px grey;
  57. font-size: 1em;
  58. padding-bottom: 5px;
  59. height: 20px;
  60. width: 20px;
  61. background-color: red;
  62. border-radius: 20%;
  63. display: inline-block;
  64. text-align: center;
  65. font-weight: bold;
  66. color: white;
  67. font-family: 'Oswald', sans-serif;
  68. }
  69. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement