index.wxss 776 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* pages/answerInfo/index.wxss */
  2. .content {
  3. margin: 0 20px;
  4. padding: 10px;
  5. border-radius: 5px;
  6. background: #fff;
  7. }
  8. .css-shadow{
  9. -moz-box-shadow:2px 2px 10px #2db7f5;
  10. -webkit-box-shadow:2px 2px 10px #2db7f5;
  11. box-shadow:2px 2px 10px #2db7f5;
  12. }
  13. .css-shadow-bottom{
  14. box-shadow:0px 2px 5px #2db7f5;
  15. }
  16. .score-col {
  17. text-align: center;
  18. color: #a0a0a0 ;
  19. line-height: 40px;
  20. }
  21. .tips {
  22. line-height: 25px;
  23. font-size: 15px;
  24. color: #aaa;
  25. padding:0 40rpx;
  26. }
  27. .startAnswer{
  28. position: fixed;
  29. bottom: 30%;
  30. left: 50%;
  31. margin-left: -125rpx;
  32. font-size: 30rpx;
  33. background-color: #2db7f5;
  34. width: 250rpx;
  35. height: 80rpx;
  36. border-radius: 100rpx;
  37. color: #ffffff;
  38. text-align: center;
  39. justify-content:center;
  40. display:flex;
  41. align-items:center;
  42. }