Advertisement
Guest User

Untitled

a guest
Aug 27th, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. @import url(https://fonts.googleapis.com/css?family=Oswald);
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. box-sizing: border-box;
  6. }
  7. a {
  8. text-decoration: none;
  9. }
  10. body {
  11. font-family: oswald;
  12. }
  13. Div#header {
  14. width: auto;
  15. height: 50px;
  16. background-color: #2c3e50;
  17. margin: 0 auto;
  18. }
  19. .logo {
  20. float: left;
  21. margin-top: 8px;
  22. }
  23. .logo a {
  24. font-size: 1.3em;
  25. margin-left: 10%;
  26. color: #fff;
  27. }
  28. div a#swag {
  29. margin-right: 15px;
  30. margin-top: 7px;
  31. color: #CCCCCC;
  32. background-color: #242424;;
  33. text-decoration: none;
  34. padding: 4px;
  35. float: right;
  36. border: 1px solid #2B2B2B;
  37. border-radius: 4px;
  38. }
  39. div a#swag:hover {
  40. margin-right: 15px;
  41. margin-top: 7px;
  42. color: #CCCCCC;
  43. background-color: #7A7A7A;
  44. text-decoration: none;
  45. padding: 4px;
  46. float: right;
  47. border: 1px solid #2B2B2B;
  48. border-radius: 4px;
  49. -webkit-transition: 0.4s;
  50. -moz-transition: 0.4s;
  51. }
  52. Div#container {
  53. width: 100%;
  54. margin: 0 auto;
  55. }
  56. .sidebar {
  57. width: 200px;
  58. height: 130%;
  59. background-color: #2B2B2B;
  60. float: left;
  61. }
  62. .content {
  63. width: calc(100% - 200px);
  64. height: 130%;
  65. background-color: #242424;
  66. float: right;
  67. padding: 15px;
  68. }
  69. ul#nav li {
  70. border-bottom: 1px dashed #1C1C1C;
  71. }
  72. ul#nav li a {
  73. color: #CCCCCC;
  74. display: block;
  75. padding: 12px 5px 12px 15px;
  76. font-size: 0.8em;
  77. -webkit-transition: 0.4s;
  78. -moz-transition: 0.4s;
  79. }
  80. ul#nav li a:hover {
  81. padding-left: 30px;
  82. background-color: #1A1A1A;
  83. }
  84. ul#nav li a.selected {
  85. padding-left: 15px;
  86. background-color: #1b2631;
  87. }
  88. div.content img{
  89. border-radius: 10px;
  90. border: 0px solid #1b2631;
  91. opacity: .7;
  92. margin: 10px;
  93. }
  94. div.content img:hover {
  95. opacity: 1;
  96. -webkit-transition: 0.4s;
  97. -moz-transition: 0.4s;
  98. }
  99. div.heading {
  100. padding: 1%;
  101. width: 90%;
  102. height: 20px;
  103. }
  104. h1 {
  105. padding: 5px;
  106. margin: auto;
  107. font-size: 20px;
  108. color:#CCCCCC;
  109. width: 100%;
  110. background-color: #2c3e50;
  111. }
  112. p {
  113. padding: 5px;
  114. font-size: 15px;
  115. width: 100%;
  116. background-color: #CCCCCC;
  117. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement