Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.91 KB | None | 0 0
  1. html, body{
  2.   height: 100%;
  3.   width: 100%;
  4.   font-family: Helvetica, sans-serif, arial;
  5.   scroll-behavior: smooth;
  6. }
  7.  
  8. .menu-title{
  9.   flex-direction: column;
  10. }
  11.  
  12.  
  13. .menu-items {
  14.   width: 100%;
  15.   padding: 50px 30px;
  16.   flex-flow: row ;
  17. }
  18.  
  19. .menu-item-body {
  20.   float: left;
  21.   position: absolute;
  22.   overflow-x: hidden;
  23.   padding-left: 25px;
  24.   margin: 0 1%;
  25.   width: 31%;
  26. }
  27. .number {
  28.   position: absolute;
  29.   left: 0;
  30. }
  31. .name {
  32.   background-color: #fff;
  33. }
  34.  
  35. .name:after {
  36.   float: left;
  37.   width: 0;
  38.   white-space: nowrap;
  39.   content: ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . " ". . . . . . . . . . . . . . . . . . . . ";
  40. }
  41. .price {
  42.   padding-left: 5px;
  43.   float: right !important;
  44.   background-color: #fff;
  45. }
  46. .description {
  47.   font-size: 14px;
  48.   font-weight: 500;
  49.   opacity: 0.8;
  50.   margin-bottom: 10px;
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement