Advertisement
last63

css feed item

Nov 9th, 2022
1,052
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.22 KB | None | 0 0
  1. /* ========== SYARAT PENDAFTARAN ========== */
  2. .collection {
  3.     background: #db9c9c;
  4.     margin-top: 30px;
  5.     padding: 30px 0;
  6.     text-align: center;
  7. }
  8.  
  9. .collection h2 {
  10.     color: black;
  11.     font-size: 2.5em;
  12.     margin: 0px 0px 0px 20px;
  13. }
  14.  
  15. .collection h6 {
  16.     color: var(--color-font);
  17.     font-size: 1.3em;
  18.     margin-bottom: 30px;
  19. }
  20.  
  21. .collection-container {
  22.     display: flex;
  23.     flex-wrap: wrap;
  24.     flex-direction: row;
  25.     justify-content: center;
  26. }
  27.  
  28. .list-persyaratan {
  29.     padding: 20px;
  30.     flex: 1;
  31.     text-align: center;
  32.     border-radius: 10px;
  33.     margin: auto;
  34. }
  35.  
  36. * .activity-feed {
  37.     padding: 30px;
  38.     list-style: none;
  39.     text-align: start;
  40.     font-size: large;
  41. }
  42.  
  43. * .activity-feed .feed-item {
  44.     position: relative;
  45.     padding-bottom: 15px;
  46.     padding-left: 30px;
  47.     margin-top: 20px;
  48.     text-align: justify;
  49.     color: var(--color-font);
  50.     border-left: 3px solid var(--color-background-white);
  51. }
  52.  
  53. * .activity-feed .feed-item:last-child {
  54.     border-color: transparent;
  55. }
  56.  
  57. * .activity-feed .feed-item::after {
  58.     content: "";
  59.     display: block;
  60.     position: absolute;
  61.     top: 0;
  62.     left: -7px;
  63.     width: 12px;
  64.     height: 12px;
  65.     border-radius: 50%;
  66.     background: #177dff;
  67. }
  68.  
  69. * .feed-item-default::after {
  70.     background: #1a2035 !important;
  71. }
  72.  
  73. * .feed-item-primary::after {
  74.     background: #1572e8 !important;
  75. }
  76.  
  77. * .feed-item-secondary::after {
  78.     background: #6861ce !important;
  79. }
  80.  
  81. * .feed-item-success::after {
  82.     background: #31ce36 !important;
  83. }
  84.  
  85. * .feed-item-danger::after {
  86.     background: #f25961 !important;
  87. }
  88.  
  89. * .feed-item-info::after {
  90.     background: #48abf7 !important;
  91. }
  92.  
  93. * .feed-item-warning::after {
  94.     background: #ffad46 !important;
  95. }
  96.  
  97. * .activity-feed .feed-item .date {
  98.     display: block;
  99.     position: relative;
  100.     top: -5px;
  101.     color: #8c96a3;
  102.     text-transform: uppercase;
  103.     font-size: 13px;
  104. }
  105.  
  106. * .activity-feed .feed-item .text {
  107.     position: relative;
  108.     top: -3px;
  109. }
  110.  
  111. .logo-list {
  112.     flex: 1;
  113.     text-align: center;
  114.     margin: auto;
  115. }
  116.  
  117. .list-img {
  118.     width: 600px;
  119.     padding: 10px;
  120.     border-radius: 3%;
  121. }
  122.  
  123. /* ========== END SYARAT PENDAFTARAN ========== */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement