event-profile.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .lin-down-arrow{
  2. position: relative;
  3. top: -2px;
  4. left: 5px;
  5. height: 10px;
  6. width: 10px;
  7. border-bottom: 3px solid #E1E1E1;
  8. border-right: 3px solid #E1E1E1;
  9. display: inline-block;
  10. transform:rotate(45deg);
  11. -ms-transform:rotate(45deg); /* IE 9 */
  12. -moz-transform:rotate(45deg); /* Firefox */
  13. -webkit-transform:rotate(45deg); /* Safari 和 Chrome */
  14. -o-transform:rotate(45deg); /* Opera */
  15. zoom: 1;
  16. }
  17. .lin-sel-group{
  18. position: fixed;
  19. top: 45px;
  20. background: #fff;
  21. width: 100%;
  22. height: -webkit-calc(100%);
  23. height: -moz-calc(100%);
  24. height: calc(100%);
  25. overflow-y: scroll;
  26. overflow-x: hidden;
  27. z-index: 11;
  28. display: none;
  29. }
  30. .lin-sel-group li{
  31. text-align: center;
  32. color: #17b3ec;
  33. height: 40px;
  34. line-height: 40px;
  35. font-size: 16px;
  36. border-bottom: 1px solid #f3f3f3;
  37. }
  38. .lin-sel-group img{
  39. width: 20px;
  40. margin: 10px;
  41. display: none;
  42. }
  43. .lin-sel-group li.checked img{
  44. display: inline;
  45. }
  46. .lin-mask{
  47. position: fixed;
  48. top: 45px;
  49. height: 100%;
  50. width: 100%;
  51. /*background: #000;*/
  52. height: 100%;
  53. z-index: 10;
  54. display: none;
  55. background-color: rgba(0,0,0,0.7);
  56. }
  57. .page-content { padding: 5px; }