site.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. body {
  2. padding-top: 70px;
  3. }
  4. .footer {
  5. border-top: 1px solid #ddd;
  6. margin-top: 30px;
  7. padding-top: 15px;
  8. padding-bottom: 30px;
  9. }
  10. .jumbotron {
  11. text-align: center;
  12. background-color: transparent;
  13. }
  14. .jumbotron .btn {
  15. font-size: 21px;
  16. padding: 14px 24px;
  17. }
  18. .not-set {
  19. color: #c55;
  20. font-style: italic;
  21. }
  22. /* add sorting icons to gridview sort links */
  23. a.asc:after, a.desc:after {
  24. position: relative;
  25. top: 1px;
  26. display: inline-block;
  27. font-family: 'Glyphicons Halflings';
  28. font-style: normal;
  29. font-weight: normal;
  30. line-height: 1;
  31. padding-left: 5px;
  32. }
  33. a.asc:after {
  34. content: /*"\e113"*/ "\e151";
  35. }
  36. a.desc:after {
  37. content: /*"\e114"*/ "\e152";
  38. }
  39. .sort-numerical a.asc:after {
  40. content: "\e153";
  41. }
  42. .sort-numerical a.desc:after {
  43. content: "\e154";
  44. }
  45. .sort-ordinal a.asc:after {
  46. content: "\e155";
  47. }
  48. .sort-ordinal a.desc:after {
  49. content: "\e156";
  50. }
  51. .hint-block {
  52. display: block;
  53. margin-top: 5px;
  54. color: #999;
  55. }
  56. .error-block {
  57. display: none;
  58. margin-top: 5px;
  59. margin-bottom: 10px;
  60. color: #a94442;
  61. }
  62. .has-error .error-block {
  63. display: block;
  64. }
  65. .error-summary {
  66. color: #a94442;
  67. background: #fdf7f7;
  68. border-left: 3px solid #eed3d7;
  69. padding: 10px 20px;
  70. margin: 0 0 15px 0;
  71. }