Advertisement
Aly

Caedon: Layout 01

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