Advertisement
ndrat

admin panel css

Nov 23rd, 2015
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300italic,300,400italic,600,700,700italic);
  2.  
  3. *{
  4. margin: 0;
  5. padding: 0;
  6. border-sizing: border-box;
  7. }
  8.  
  9. a{
  10. text-decoration: none;
  11. }
  12.  
  13. body{
  14. font-family: 'Open Sans'
  15. }
  16.  
  17. #header{
  18. width: 100%;
  19. height: 50px;
  20. background: #2c3e50;
  21. margin: 0 auto;
  22. }
  23.  
  24. .logo{
  25. float: left;
  26. margin-left: 10px;
  27. margin-top: 4px;
  28. }
  29.  
  30. .logo a{
  31. font-size: 1.6em;
  32. color: #fff;
  33. }
  34.  
  35. .logo span{
  36. font-weight: 300;
  37. }
  38.  
  39. #container{
  40. width: 100%;
  41. margin: 0 auto;
  42. }
  43.  
  44. .sidebar{
  45. width: 250px;
  46. height: 100%;
  47. background-color: #171717;
  48. float: left;
  49. }
  50.  
  51. ul#nav{
  52.  
  53. }
  54.  
  55. ul#nav li{
  56. list-style: none;
  57. }
  58.  
  59. ul#nav li a{
  60. color: #ccc;
  61. display: block;
  62. padding: 10px;
  63. font-size: 0.8em;
  64. border-bottom: 1px solid #0a0a0a;
  65. -webkit-transition: 0.2s;
  66. -moz-transition: 0.2s;
  67. -o-transition: 0.2s;
  68. transition: 0.2s;
  69. }
  70.  
  71. ul#nav li a:hover{
  72. background-color: #030303;
  73. color: #fff;
  74. padding-left: 15px;
  75. }
  76.  
  77. ul#nav li a.selected{
  78. background-color: #030303;
  79. color: #fff;
  80. }
  81.  
  82. .content{
  83. width: auto;
  84. margin-left: 250px;
  85. height: 100%;
  86. background-color: #bdc3c7;
  87. padding: 15px;
  88. }
  89.  
  90. .content p{
  91. color: #424242;
  92. font-size: 0.73em;
  93. }
  94.  
  95. div#box{
  96. margin-top: 15px;
  97. }
  98.  
  99. div#box .box-top{
  100. color: #fff;
  101. text-shadow: 0px 1px #ddd;
  102. background: #2980b9;
  103. padding: 15px;
  104. font-weight: 300;
  105. }
  106.  
  107. div#box .box-panel{
  108. padding: 15px;
  109. background: #fff;
  110. color: #333;
  111. font-size: 0.80em;
  112. }
  113.  
  114. a.mobile{
  115. display: block;
  116. color: #fff;
  117. background-color: #000;
  118. text-align: center;
  119. padding: 7px;
  120. }
  121.  
  122. a.mobile:active {
  123. background-color: #4a4a4a;
  124. }
  125.  
  126. @media only screen and (max-width: 320px;){
  127. .sidebar{
  128. display: none;
  129. }
  130. .content{
  131. margin-left: 0px;
  132. }
  133. }
  134.  
  135. @media only screen and (min-width: 320px;){
  136. a.mobile{
  137. display: none;
  138. }
  139. .sidebar{
  140. height: 100%;
  141. display: block;
  142. }
  143. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement