preferences.less 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. #main_preferences {
  2. form {
  3. width: 100%;
  4. }
  5. fieldset {
  6. margin: 8px;
  7. border: none;
  8. }
  9. legend {
  10. margin: 0;
  11. padding: 5px 0 0 0;
  12. display: block;
  13. float:left;
  14. width: 300px;
  15. }
  16. .value {
  17. margin: 0;
  18. padding: 0;
  19. float:left;
  20. width: 15em;
  21. }
  22. .description {
  23. margin: 0;
  24. padding: 5px 0 0 0;
  25. float:left;
  26. width: 50%;
  27. color: darken(#dcdcdc, 30%);
  28. font-size: 90%;
  29. }
  30. select {
  31. width: 200px;
  32. font-size: inherit !important;
  33. }
  34. table {
  35. border-collapse: collapse;
  36. }
  37. table td {
  38. text-align: center;
  39. }
  40. .name, .shortcut {
  41. text-align: left;
  42. }
  43. .preferences_back {
  44. background: none repeat scroll 0 0 @color-settings-return-background;
  45. color: white;
  46. border: 0 none;
  47. .rounded-corners;
  48. cursor: pointer;
  49. display: inline-block;
  50. margin: 2px 4px;
  51. padding: 0.5em;
  52. a {
  53. display: block;
  54. color: @color-settings-return-font;
  55. }
  56. a::first-letter {
  57. text-transform: uppercase;
  58. }
  59. }
  60. }
  61. @media screen and (max-width: 75em) {
  62. .preferences_back {
  63. clear: both;
  64. }
  65. }