Advertisement
bcworkz

move to style.css

Jun 18th, 2019
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.84 KB | None | 0 0
  1. .header {
  2.     padding: 200px 0;
  3. }
  4.  
  5. .bg-dark {
  6.     background-color: #375d86;
  7. }
  8.  
  9. .bg-graphite {
  10.     background-color: #375d86;
  11. }
  12.  
  13. .page-title {
  14.     display: inline-block;
  15.     border-bottom: 2px solid #ccc;
  16.     font-family: "Roboto Slab", sans-serif;
  17.     font-size: 1.9em;
  18.     font-weight: 700;
  19.     padding-bottom: 50px;
  20.     text-align: center;
  21.     text-transform: uppercase;
  22. }
  23.  
  24. .post-header {
  25.     border-bottom: 1px solid #eee;
  26.     padding: 4% 8%;
  27.     position: relative;
  28. }
  29.  
  30. .posts .post-content {
  31.     padding: 6%;
  32.     -ms-word-wrap: break-word;
  33.     word-wrap: break-word;
  34. }
  35.  
  36. .single .post-content {
  37.     padding: 5%;
  38. }
  39.  
  40. .child-title a:hover, .post-header .post-title a:focus {
  41.     color: #13c4a5;
  42. }
  43.  
  44. .child-title {
  45.     display: inline-block;
  46.     font-family: "Roboto Slab", sans-serif;
  47.     font-size: 1.9em;
  48.     font-weight: 700;
  49.     padding-bottom: 50px;
  50.     width: 100%;
  51.     text-align: center;
  52.     text-transform: uppercase;
  53. }
  54.  
  55. .post-header .post-title {
  56.     font-size: 1.25em; 
  57. }
  58.  
  59. .posts .post-container.fade-in {
  60.     opacity: 1.0;
  61. }
  62.  
  63. .posts .post-container {
  64.     opacity: 0;
  65.     -webkit-transition: opacity 0.5s;
  66.     -moz-transition: opacity 0.5s;
  67.     transition: opacity 0.5s;
  68. }
  69.  
  70. .child-page .isc_image_list_box {
  71.     display: none;
  72. }
  73.  
  74. .hentry, .post {
  75.     -webkit-box-shadow: 0 0 rgba(0,0,0,0);
  76.     -moz-box-shadow: 0 0 rgba(0,0,0,0);
  77.     box-shadow: 0 0 rgba(0,0,0,0);
  78. }
  79.  
  80. .post-meta {
  81.     display: none !important;
  82. }
  83.  
  84. .elementor-image-carousel-caption {
  85.     color: #7a7a7a;
  86.     font-family: "Roboto", Sans-serif;
  87.     font-weight: 400 !important;
  88.     padding-top: .5em;
  89.     text-align: center;
  90.     font-size: .8em;
  91. }
  92.  
  93. #footer a:link, #footer a:visited {
  94.     color:#999;
  95. }
  96.  
  97. .widget-content ul li::before {
  98.     color: #999;
  99. }
  100.  
  101. .child-page .post-content {
  102.     padding: 6%;
  103.     background-color: #ffffff
  104. }
  105.  
  106. .child-page .post-header {
  107.     background-color: #ffffff
  108. }
  109.  
  110. .child-page .post-title {
  111.     background-color: #ffffff
  112. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement