pen-bottom.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. #pen_bottom {
  2. color: #fefefe;
  3. font-size: 0.857em;
  4. margin: 1em 0 0;
  5. padding: 2em;
  6. position: relative;
  7. text-shadow: 1px 1px 2px rgba(0,0,0,0.75);
  8. }
  9. #pen_bottom.pen_not_transparent {
  10. background: #1f1f1f;
  11. }
  12. body.pen_round_corners #pen_bottom {
  13. border-radius: 5px 5px 0 0;
  14. }
  15. body.pen_drop_shadow #pen_bottom.pen_not_transparent {
  16. box-shadow: 0 0 20px rgba(0,0,0,0.4);
  17. }
  18. #pen_bottom a {
  19. color: #0087cc;
  20. }
  21. #pen_bottom a:focus,
  22. #pen_bottom a:hover,
  23. #pen_bottom a:active {
  24. text-decoration: none;
  25. }
  26. #pen_bottom input[type="date"],
  27. #pen_bottom input[type="email"],
  28. #pen_bottom input[type="file"],
  29. #pen_bottom input[type="number"],
  30. #pen_bottom input[type="tel"],
  31. #pen_bottom input[type="time"],
  32. #pen_bottom input[type="text"],
  33. #pen_bottom option,
  34. #pen_bottom select,
  35. #pen_bottom textarea {
  36. background: -ms-linear-gradient(top, #1f1f1f 0%, #2f2f2f 100%);
  37. background: linear-gradient(to bottom, #1f1f1f 0%, #2f2f2f 100%);
  38. color: #ccc;
  39. }
  40. #pen_bottom .widget {
  41. float: left;
  42. width: 100%;
  43. }
  44. @media only screen and (min-width:728px) {
  45. #pen_bottom .widget:nth-child(1):nth-last-child(5),
  46. #pen_bottom .widget:nth-child(2):nth-last-child(4),
  47. #pen_bottom .widget:nth-child(3):nth-last-child(3),
  48. #pen_bottom .widget:nth-child(4):nth-last-child(2),
  49. #pen_bottom .widget:nth-child(5):nth-last-child(1) {
  50. margin-left: 1%;
  51. margin-right: 1%;
  52. width: 18%;
  53. }
  54. #pen_bottom .widget:nth-child(1):nth-last-child(4),
  55. #pen_bottom .widget:nth-child(2):nth-last-child(3),
  56. #pen_bottom .widget:nth-child(3):nth-last-child(2),
  57. #pen_bottom .widget:nth-child(4):nth-last-child(1) {
  58. margin-left: 1%;
  59. margin-right: 1%;
  60. width: 23%;
  61. }
  62. #pen_bottom .widget:nth-child(1):nth-last-child(3),
  63. #pen_bottom .widget:nth-child(2):nth-last-child(2),
  64. #pen_bottom .widget:nth-child(3):nth-last-child(1) {
  65. margin-left: 1%;
  66. margin-right: 1%;
  67. width: 31.33%;
  68. }
  69. #pen_bottom .widget:nth-child(1):nth-last-child(2),
  70. #pen_bottom .widget:nth-child(2):nth-last-child(1) {
  71. margin-left: 1%;
  72. margin-right: 1%;
  73. width: 47.9%;
  74. }
  75. }
  76. #pen_bottom .widget h3.widget-title {
  77. margin-top: 0;
  78. }
  79. #pen_bottom .widget.pen_widget_dark h3.widget-title,
  80. #pen_bottom .widget.pen_widget_light h3.widget-title {
  81. padding: 0.5em 1em !important;
  82. }
  83. #pen_bottom .widget ul {
  84. margin: 0;
  85. padding: 0 0 0 1em;
  86. }
  87. #pen_bottom ul.menu {
  88. list-style: none;
  89. margin: 0;
  90. padding: 0;
  91. position: relative;
  92. }
  93. #pen_bottom ul.menu:before {
  94. background: -ms-linear-gradient(270deg, rgba(120,120,120,0) 0%, rgba(120,120,120,0.2) 50%, rgba(120,120,120,0) 100%);
  95. background: linear-gradient(180deg, rgba(120,120,120,0) 0%, rgba(120,120,120,0.2) 50%, rgba(120,120,120,0) 100%);
  96. content: "";
  97. height: 100%;
  98. left: 0;
  99. position: absolute;
  100. top: 0;
  101. width: 1px;
  102. }
  103. #pen_bottom ul.menu a {
  104. display: block;
  105. padding: 0.5em 2em;
  106. }