Advertisement
OpataJoshua

Untitled

Aug 28th, 2022
1,045
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.63 KB | None | 0 0
  1. .traffic{
  2.   display: flex;
  3.   flex-direction: column;
  4.   gap: 10px;
  5.   padding: 20px;
  6.   background: rgb(65, 68, 75);
  7.   width: fit-content;
  8.   border-radius: 40px;
  9. }
  10.  
  11. .light{
  12.   width: 150px;
  13.   height: 150px;
  14.   border-radius: 50%;
  15.   display: flex;
  16.   align-items: center;
  17.   justify-content: center;
  18.   text-align: center;
  19.   color: white;
  20.   font-size: 10px;
  21. }
  22.  
  23. .red{
  24.   background: rgb(248, 76, 76, .5);
  25. }
  26.  
  27. .yellow{
  28.   background: rgb(245, 248, 76, .5);
  29. }
  30.  
  31. .green{
  32.   background: rgb(76, 248, 128, .5);
  33. }
  34.  
  35. /* turn red on small devices */
  36. /* turn yellow on medium size devices */
  37. /* turn green on large size devices */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement