Advertisement
Ostap34PHP

Untitled

Aug 19th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.63 KB | None | 0 0
  1.     body {
  2.         counter-reset: section -1;
  3.     }
  4.  
  5.     .zakaz-item {
  6.         /*text-align: center;*/
  7.         counter-increment: section;
  8.     }
  9.  
  10.     .zakaz-item p::before {
  11.         background: #F4BD00;
  12.         color: #000000;
  13.         content: counter(section);
  14.         padding: 2px 10px;
  15.         border-radius: 44px;
  16.         display: inline-block;
  17.         font-weight: bold;
  18.     }
  19.  
  20.     .zakaz-item > p {
  21.         display: inline-block;
  22.         font-size: 24px;
  23.     }
  24.  
  25.     .zakaz-item img {
  26.         float: right;
  27.     }
  28.  
  29.     .zakaz-item p a {
  30.         color: #FF0000;
  31.         border-bottom: #FF0000 solid 3px;
  32.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement