Drupal investigation

site.css 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. html,
  2. body {
  3. height: 100%;
  4. }
  5. .wrap {
  6. min-height: 100%;
  7. height: auto;
  8. margin: 0 auto -60px;
  9. padding: 0 0 60px;
  10. }
  11. .wrap > .container {
  12. padding: 70px 15px 20px;
  13. }
  14. .footer {
  15. height: 60px;
  16. background-color: #f5f5f5;
  17. border-top: 1px solid #ddd;
  18. padding-top: 20px;
  19. }
  20. .jumbotron {
  21. text-align: center;
  22. background-color: transparent;
  23. }
  24. .jumbotron .btn {
  25. font-size: 21px;
  26. padding: 14px 24px;
  27. }
  28. .not-set {
  29. color: #c55;
  30. font-style: italic;
  31. }
  32. /* add sorting icons to gridview sort links */
  33. a.asc:after, a.desc:after {
  34. position: relative;
  35. top: 1px;
  36. display: inline-block;
  37. font-family: 'Glyphicons Halflings';
  38. font-style: normal;
  39. font-weight: normal;
  40. line-height: 1;
  41. padding-left: 5px;
  42. }
  43. a.asc:after {
  44. content: /*"\e113"*/ "\e151";
  45. }
  46. a.desc:after {
  47. content: /*"\e114"*/ "\e152";
  48. }
  49. .sort-numerical a.asc:after {
  50. content: "\e153";
  51. }
  52. .sort-numerical a.desc:after {
  53. content: "\e154";
  54. }
  55. .sort-ordinal a.asc:after {
  56. content: "\e155";
  57. }
  58. .sort-ordinal a.desc:after {
  59. content: "\e156";
  60. }
  61. .grid-view th {
  62. white-space: nowrap;
  63. }
  64. .hint-block {
  65. display: block;
  66. margin-top: 5px;
  67. color: #999;
  68. }
  69. .error-summary {
  70. color: #a94442;
  71. background: #fdf7f7;
  72. border-left: 3px solid #eed3d7;
  73. padding: 10px 20px;
  74. margin: 0 0 15px 0;
  75. }
  76. /* align the logout "link" (button in form) of the navbar */
  77. .nav li > form > button.logout {
  78. padding: 15px;
  79. border: none;
  80. }
  81. @media(max-width:767px) {
  82. .nav li > form > button.logout {
  83. display:block;
  84. text-align: left;
  85. width: 100%;
  86. padding: 10px 15px;
  87. }
  88. }
  89. .nav > li > form > button.logout:focus,
  90. .nav > li > form > button.logout:hover {
  91. text-decoration: none;
  92. }
  93. .nav > li > form > button.logout:focus {
  94. outline: none;
  95. }