Advertisement
Guest User

css

a guest
Feb 21st, 2019
643
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. html,
  2. body {
  3. background-color: whitesmoke;
  4. }
  5.  
  6. .container {
  7. flex-flow: row wrap;
  8. display: flex;
  9. justify-content: space-around;
  10. flex: auto;
  11. }
  12.  
  13. .container > div {
  14. margin:auto;
  15. padding:10px;
  16. }
  17.  
  18.  
  19. /*header*/
  20. header {
  21. position: fixed;
  22. background-color: white;
  23. margin: 0px;
  24. padding: 0px;
  25. border: 0px;
  26. width: 100%;
  27. height: 80px;
  28. }
  29.  
  30. .headerfill {
  31. height: 100px;
  32. }
  33.  
  34.  
  35.  
  36.  
  37.  
  38. /*Headers*/
  39. h3 {
  40. line-height: 0.5px;
  41. text-align: center;
  42. }
  43.  
  44. h3:before,
  45. h3:after {
  46. background-color: #333;
  47. content: "";
  48. display: inline-block;
  49. height: 1px;
  50. position: relative;
  51. vertical-align: middle;
  52. width: 50%;
  53. }
  54.  
  55. h3:before {
  56. right: 0.5em;
  57. margin-left: -50%;
  58. }
  59.  
  60. h3:after {
  61. left: 0.5em;
  62. margin-right: -50%;
  63. }
  64.  
  65. h5 {
  66. margin: 0px;
  67. padding: 0px;
  68. }
  69.  
  70. .shopitem > p {
  71. margin-bottom: 0px;
  72. margin-top: 0px;
  73. }
  74.  
  75. .horline {
  76. background-color: #333;
  77. content: "";
  78. display: inline-block;
  79. height: 1px;
  80. position: relative;
  81. vertical-align: middle;
  82. width: 100%;
  83. }
  84.  
  85. /*Shop*/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement