Advertisement
Guest User

code

a guest
Jun 27th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. blog-title {
  2.  
  3. }
  4. .blog-text {
  5.  
  6. }
  7. .blog-user {
  8. color: #8c8c8c;
  9. font-family: Roboto;
  10. }
  11.  
  12. .grid-container-blog {
  13. display: grid;
  14. grid-template-columns: 25% 50% 25%;
  15. grid-template-areas:
  16. 'header header header'
  17. 'Blank_left main Blank_right'
  18. 'footer footer footer';
  19. }
  20. .header-blog {
  21. grid-area: header;
  22. width: 100%;
  23. height: 7vh;
  24. background-color: #2b2b2b;
  25. }
  26. .info-blog-left {
  27. grid-area: Blank_left;
  28. background-color: grey;
  29. width: 100%;
  30. height: 93vh;
  31. position: static;
  32. }
  33. .info-blog-right {
  34. grid-area: Blank_right;
  35. background-color: grey;
  36. width: 100%;
  37. height: 100%;
  38. position: static;
  39. }
  40. .main-blog {
  41. background-color: #ededed;
  42. grid-area: main;
  43. width: 100%;
  44. text-align: center;
  45. }
  46. .post {
  47. border: 1px solid black;
  48. margin: 2%;
  49. display: inline-block;
  50. width: 40%;
  51. height: 20%;
  52. padding: 1%;
  53. }
  54. .footer-blog {
  55. grid-area: footer;
  56. width: 100%;
  57. }
  58. .content-left-box {
  59. width: 100%;
  60. text-align: center;
  61. color: white;
  62. }
  63. .content-right-box {
  64. width: 100%;
  65. text-align: center;
  66. color: white;
  67. }
  68. .content-left-box-second {
  69. display: inline-block;
  70. width: 70%;
  71. }
  72. .content-right-box-second {
  73. display: inline-block;
  74. width: 70%;
  75. }
  76. .content-right-box a {
  77. display: inline-block;
  78. }
  79. .content-left-box a {
  80. display: inline-block;
  81. }
  82. .content-left-box a, .content-right-box a{
  83. border: 1px solid black;
  84. padding: 10px;
  85. margin: 10px;
  86. width: 300px;
  87. text-decoration: none;
  88. color: black;
  89. font-size: 35px;
  90. font-family: Arial;
  91. }
  92. .content-left-box a:hover, .content-right-box a:hover{
  93. border: 1px solid #b7b7b7;
  94. padding: 10px;
  95. margin: 10px;
  96. width: 300px;
  97. text-decoration: none;
  98. color: #b7b7b7;
  99. font-size: 35px;
  100. font-family: Arial;
  101. }
  102. .navbar-blog ul li {
  103. display: inline-block;
  104. }
  105. .navbar-blog ul li a {
  106. text-decoration: none;
  107. color: #fff;
  108. font-family: Roboto;
  109. font-size: 28px;
  110. padding: 20px;
  111.  
  112. }
  113. .blog-link:after {
  114. content: '';
  115. display: block;
  116. width: 0;
  117. height: 2px;
  118. background-color: #fff;
  119. transition: width .3s;
  120. }
  121. .blog-link:hover::after {
  122. width: 100%;
  123. transition: width .3s;
  124. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement