site.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. html,
  2. body {
  3. height: 100%;
  4. }
  5. .wrap {
  6. background: url("/img/perforated_white_leather.png");
  7. min-height: 100%;
  8. height: auto;
  9. margin: 0 auto -60px;
  10. padding: 0 0 60px;
  11. z-index: -9999;
  12. }
  13. .wrap > .container {
  14. padding: 70px 15px 20px;
  15. }
  16. .footer {
  17. height: 60px;
  18. background-color: #f5f5f5;
  19. border-top: 1px solid #ddd;
  20. padding-top: 20px;
  21. }
  22. .jumbotron {
  23. text-align: center;
  24. background-color: rgba(164, 164, 164, 0.4);
  25. z-index: 999;
  26. }
  27. .jumbotron .btn {
  28. font-size: 21px;
  29. padding: 14px 24px;
  30. }
  31. .not-set {
  32. color: #c55;
  33. font-style: italic;
  34. }
  35. /* add sorting icons to gridview sort links */
  36. a.asc:after, a.desc:after {
  37. position: relative;
  38. top: 1px;
  39. display: inline-block;
  40. font-family: 'Glyphicons Halflings';
  41. font-style: normal;
  42. font-weight: normal;
  43. line-height: 1;
  44. padding-left: 5px;
  45. }
  46. a.asc:after {
  47. content: /*"\e113"*/ "\e151";
  48. }
  49. a.desc:after {
  50. content: /*"\e114"*/ "\e152";
  51. }
  52. .sort-numerical a.asc:after {
  53. content: "\e153";
  54. }
  55. .sort-numerical a.desc:after {
  56. content: "\e154";
  57. }
  58. .sort-ordinal a.asc:after {
  59. content: "\e155";
  60. }
  61. .sort-ordinal a.desc:after {
  62. content: "\e156";
  63. }
  64. .grid-view th {
  65. white-space: nowrap;
  66. }
  67. .hint-block {
  68. display: block;
  69. margin-top: 5px;
  70. color: #999;
  71. }
  72. .error-summary {
  73. color: #a94442;
  74. background: #fdf7f7;
  75. border-left: 3px solid #eed3d7;
  76. padding: 10px 20px;
  77. margin: 0 0 15px 0;
  78. }