site.css 831 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. /* add sorting icons to gridview sort links */
  19. a.asc:after, a.desc:after {
  20. position: relative;
  21. top: 1px;
  22. display: inline-block;
  23. font-family: 'Glyphicons Halflings';
  24. font-style: normal;
  25. font-weight: normal;
  26. line-height: 1;
  27. padding-left: 5px;
  28. }
  29. a.asc:after { content: /*"\e113"*/"\e151"; }
  30. a.desc:after { content: /*"\e114"*/"\e152"; }
  31. .sort-numerical a.asc:after { content: "\e153"; }
  32. .sort-numerical a.desc:after { content: "\e154"; }
  33. .sort-ordinal a.asc:after { content: "\e155"; }
  34. .sort-ordinal a.desc:after { content: "\e156"; }