event-profile.css 1020 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .lin-down-arrow{
  2. position: relative;
  3. top: -2px;
  4. left: 5px;
  5. height: 10px;
  6. width: 10px;
  7. border-bottom: 3px solid #fff;
  8. border-right: 3px solid #fff;
  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. z-index: 11;
  23. display: none;
  24. }
  25. .lin-sel-group li{
  26. text-align: center;
  27. color: #17b3ec;
  28. height: 40px;
  29. line-height: 40px;
  30. font-size: 16px;
  31. border-bottom: 1px solid #f2f4f6;
  32. }
  33. .lin-sel-group img{
  34. width: 20px;
  35. margin: 10px;
  36. display: none;
  37. }
  38. .lin-sel-group li.checked img{
  39. display: inline;
  40. }
  41. .lin-mask{
  42. position: fixed;
  43. top: 45px;
  44. height: 100%;
  45. width: 100%;
  46. /*background: #000;*/
  47. height: 100%;
  48. z-index: 10;
  49. display: none;
  50. background-color: rgba(0,0,0,0.5);
  51. }
  52. .page-content { padding: 5px; }