guess_result.css 557 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. body{background-color: #fff;}
  2. #main{
  3. width:100%;
  4. position:fixed;
  5. }
  6. #main span{
  7. position:fixed;
  8. right:1rem;
  9. bottom:5rem;
  10. color:#343434;
  11. text-decoration:underline;
  12. }
  13. #histroy{
  14. width:100%;
  15. position:relative;
  16. margin-top:1rem;
  17. display:none;
  18. }
  19. .wraper{
  20. width:96%;
  21. margin:0 auto 1rem;
  22. border:1px solid #999;
  23. border-radius:10px;
  24. overflow:hidden;
  25. background:#fff;
  26. color:#343434;
  27. }
  28. .wraper img{
  29. width:100%;
  30. }
  31. .wraper span{
  32. display:inline-block;
  33. width:49%;
  34. padding: 10px;
  35. white-space: nowrap;
  36. overflow: hidden;
  37. text-overflow: ellipsis;
  38. }