Aly

Caedon: Layout 02

Aly
Dec 16th, 2016
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. /* Basic Grid 02 by Aly */
  2.  
  3. * { box-sizing: border-box; }
  4.  
  5. body { background: none; }
  6.  
  7. #wrap, #header {
  8. position: fixed;
  9. right: 0;
  10. margin: 0 auto;
  11. width: 600px;
  12. }
  13.  
  14. #wrap {
  15. left: 250px;
  16. bottom: 25px; top: 25px;
  17. height: calc(100% - 50px ) !important;
  18. overflow: visible;
  19. border: 0; padding: 0;
  20. border-radius: 0px;
  21. border: 1px solid #000;
  22. }
  23.  
  24. h1#logo { display: none; }
  25.  
  26. ul.navigation { float: left; width: 100%; text-align: center;}
  27. ul.navigation li { height: 100%; display: inline-block; line-height: 25px; }
  28. ul.navigation li a { margin-left: 10px; margin-right: 10px; color: #FFF; }
  29.  
  30. #sidebar h2 {
  31. position: absolute;
  32. left: 0;
  33. top: -350px;
  34. bottom: 0;
  35. margin: auto 0;
  36. background-color: black;
  37. height: 25px;
  38. width: 200px;
  39. margin-left: -225px;
  40. text-align: center;
  41. line-height: 25px;
  42. color: #FFF;
  43. font-size: 15px;
  44. }
  45.  
  46. #sidebar img{
  47. position: absolute;
  48. left: -225px; bottom: 0; top: -50px;
  49. margin: auto 0;
  50. border: 1px solid #000;
  51. padding: 25px;
  52. width: 200px;
  53. }
  54.  
  55. #content {
  56. position: absolute;
  57. left: 0; top: 25px; right: 0; margin: 0 auto;
  58. padding: 0;
  59. height: calc(100% - 25px);
  60. width: 100%;
  61. border: 0;
  62. background-color: transparent;
  63. padding: 25px;
  64. overflow: auto;
  65. }
  66.  
  67. #bio, #friendlist, #comments {
  68. float: left;
  69. width: 100%;
  70. border: 1px solid #000;
  71. min-height: 125px;
  72. margin-bottom: 25px;
  73. padding: 10px;
  74. }
  75.  
  76. .friend_container {
  77. border: 1px solid #000;
  78. width: 50px;
  79. height: 50px;
  80. padding: 10px;
  81. }
  82.  
  83. .friend_container img {
  84. float: left;
  85. width: 100%;
  86. }
  87.  
  88. ul#actions {
  89. position: absolute;
  90. left: -225px;
  91. top: 475px;
  92. width: 200px;
  93. height: 75px;
  94. border: 1px solid #000;
  95. }
  96.  
  97. #likes, #dislikes, #hobbies { display: none; }
  98.  
  99. #comments ul li {
  100. border: 1px solid #000;
  101. display: block;
  102. overflow: hidden;
  103. margin-bottom: 10px;
  104. padding: 10px;
  105. }
  106.  
  107. #comments ul li img {
  108. border: 1px solid #000;
  109. margin-right: 10px !important;
  110. }
  111.  
  112. #header {
  113. top: 25px;
  114. left: 250px;
  115. height: 25px;
  116. background: none;
  117. background-color: #000;
  118. color: #FFF !important;
  119. z-index: 5;
  120. .stop{}
Add Comment
Please, Sign In to add comment