bootstrap-datetimepicker-standalone.css 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. @font-face {
  2. font-family: 'Glyphicons Halflings';
  3. src: url('../fonts/glyphicons-halflings-regular.eot');
  4. src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
  5. }
  6. .glyphicon {
  7. position: relative;
  8. top: 1px;
  9. display: inline-block;
  10. font-family: 'Glyphicons Halflings';
  11. font-style: normal;
  12. font-weight: normal;
  13. line-height: 1;
  14. -webkit-font-smoothing: antialiased;
  15. -moz-osx-font-smoothing: grayscale;
  16. }
  17. .glyphicon-time:before {
  18. content: "\e023";
  19. }
  20. .glyphicon-chevron-left:before {
  21. content: "\e079";
  22. }
  23. .glyphicon-chevron-right:before {
  24. content: "\e080";
  25. }
  26. .glyphicon-chevron-up:before {
  27. content: "\e113";
  28. }
  29. .glyphicon-chevron-down:before {
  30. content: "\e114";
  31. }
  32. .glyphicon-calendar:before {
  33. content: "\e109";
  34. }
  35. .btn {
  36. display: inline-block;
  37. padding: 6px 12px;
  38. margin-bottom: 0;
  39. font-size: 14px;
  40. font-weight: normal;
  41. line-height: 1.42857143;
  42. text-align: center;
  43. white-space: nowrap;
  44. vertical-align: middle;
  45. -ms-touch-action: manipulation;
  46. touch-action: manipulation;
  47. cursor: pointer;
  48. -webkit-user-select: none;
  49. -moz-user-select: none;
  50. -ms-user-select: none;
  51. user-select: none;
  52. background-image: none;
  53. border: 1px solid transparent;
  54. border-radius: 4px;
  55. }
  56. .collapse {
  57. display: none;
  58. }
  59. .collapse.in {
  60. display: block;
  61. }
  62. .dropdown-menu {
  63. position: absolute;
  64. left: 0;
  65. z-index: 1000;
  66. display: none;
  67. float: left;
  68. min-width: 160px;
  69. padding: 5px 0;
  70. margin: 2px 0 0;
  71. font-size: 14px;
  72. text-align: left;
  73. list-style: none;
  74. background-color: #fff;
  75. -webkit-background-clip: padding-box;
  76. background-clip: padding-box;
  77. border: 1px solid #ccc;
  78. border: 1px solid rgba(0, 0, 0, .15);
  79. border-radius: 4px;
  80. -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  81. box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  82. }
  83. .list-unstyled {
  84. padding-left: 0;
  85. list-style: none;
  86. }