list.wxss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /* pages/list/list.wxss */
  2. .handset{
  3. width: 100%;
  4. height: 40px;
  5. line-height: 40px;
  6. border-bottom: darkgrey solid 1px;
  7. }
  8. .handset text{
  9. margin-left: 12px;
  10. font-size: 12px;
  11. width: 80px;
  12. height: 40px;
  13. float: left;
  14. }
  15. .handset input{
  16. width: 150px;
  17. float: left;
  18. height: 30px;
  19. margin-top: 5px;
  20. }
  21. .handset button{
  22. font-size: 12px;
  23. color:cornsilk;
  24. height: 30px;
  25. margin-top: 5px;
  26. background-color: cornflowerblue;
  27. float: left;
  28. }
  29. .handset button:active{
  30. box-shadow:
  31. 7px 6px 28px 1px;
  32. transform: translateY(4px);
  33. }
  34. .project{
  35. width: 100%;
  36. height: 40px;
  37. line-height: 40px;
  38. border-bottom: darkgrey solid 1px;
  39. position: relative;
  40. }
  41. .project text{
  42. margin-left: 12px;
  43. font-size: 12px;
  44. width: 120px;
  45. height: 40px;
  46. float: left;
  47. }
  48. .project button{
  49. font-size: 12px;
  50. color:cornsilk;
  51. height: 30px;
  52. margin-top: 5px;
  53. background-color: cornflowerblue;
  54. float: left;
  55. }
  56. .project button:active{
  57. box-shadow:
  58. 7px 6px 28px 1px;
  59. transform: translateY(4px);
  60. }
  61. .project image{
  62. position: absolute;
  63. right: 30px;
  64. top: 7px;
  65. width: 25px;
  66. height: 25px;
  67. }