master.blade.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>@yield('title')</title>
  8. <style type="text/css">
  9. *{
  10. font-family: Roboto;
  11. }
  12. h1{
  13. text-align: center;
  14. color: #1DA1F2;
  15. padding-top: 32px;
  16. }
  17. *{
  18. font-family: Roboto;
  19. }
  20. button {
  21. margin: 30px;
  22. align-self: right;
  23. width: 126px;
  24. height: 32px;
  25. background: #1DA1F2 0% 0% no-repeat padding-box;
  26. border-radius: 32px;
  27. opacity: 1;
  28. text-align: center;
  29. font-weight: 400;
  30. font-size: 14px;
  31. letter-spacing: 0;
  32. color: #FFFFFF;
  33. border: 0 solid transparent
  34. }
  35. input[type="text"], textarea {
  36. background: #FFFFFF 0% 0% no-repeat padding-box;
  37. border: 1px solid #AAAAAABF;
  38. border-radius: 12px;
  39. opacity: 1;
  40. font-weight: 400;
  41. font-size: 14px;
  42. letter-spacing: 0;
  43. color: #202020;
  44. opacity: 1;
  45. vertical-align: top;
  46. width: 270px;
  47. margin-top: 10px;
  48. text-indent: 10px;
  49. resize: none;
  50. }
  51. .post{
  52. display: block;
  53. margin-left: auto;
  54. margin-right: auto;
  55. width: 500px;
  56. height: 360px;
  57. background-color: #FFFFFF;
  58. border-radius: 32px
  59. }
  60. .message{
  61. display: block;
  62. margin-left: auto;
  63. margin-right: auto;
  64. width: 500px;
  65. height: 360px;
  66. background-color: #FFFFFF;
  67. border-radius: 32px;
  68. margin-top: 100px;
  69. }
  70. .logout{
  71. display: block;
  72. margin-left: 80%;
  73. text-align: center;
  74. font-weight: 400;
  75. font-size: 14px;
  76. letter-spacing: 0;
  77. color: #FFFFFF;
  78. border: 0 solid transparent;
  79. width: 126px;
  80. height: 32px;
  81. background: #1DA1F2 0% 0% no-repeat padding-box;
  82. border-radius: 32px;
  83. opacity: 1;
  84. }
  85. input[name="title"]{
  86. height: 25px;
  87. }
  88. body{
  89. background-color: #243447;
  90. }
  91. .posts{
  92. background-color: #FFFFFF;
  93. width: 900px;
  94. display: block;
  95. margin-left: auto;
  96. margin-right: auto;
  97. margin-top: 0;
  98. outline: 2px;
  99. }
  100. .postblock{
  101. background-color: #FFFFFF;
  102. width: 900px;
  103. margin-top: 50px;
  104. display: block;
  105. margin-left: auto;
  106. margin-right: auto;
  107. border-radius: 32px;
  108. opacity: 1;
  109. }
  110. .p{
  111. text-align: left;
  112. padding-bottom: 30px;
  113. padding-top: 10px;
  114. margin-left: 15%;
  115. }
  116. .text{
  117. text-align: left;
  118. padding-top: 30px;
  119. margin-left: 15%;
  120. width: 350px;
  121. }
  122. .recent{
  123. margin-left: 15%;
  124. padding-top: 50px;
  125. padding-bottom: 30px;
  126. }
  127. h3{
  128. font-size: 20px;
  129. }
  130. strong{
  131. font-size: 20px;
  132. }
  133. .link{
  134. margin-top: 5px;
  135. }
  136. </style>
  137. </head>
  138. <body>
  139. @yield('content')
  140. </body>
  141. </html>