page2Css.css 716 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .page {
  2. position:fixed;
  3. width:100%;
  4. height:92%;
  5. }
  6. .container {
  7. margin:100px auto 30px auto;
  8. width:80%;
  9. height:70%;
  10. background:rgba(0,0,0,1);
  11. overflow:scroll;
  12. }
  13. .footer {
  14. margin:0 auto;
  15. width:80%;
  16. text-align:center;
  17. }
  18. section {
  19. padding:15px
  20. }
  21. section .title {
  22. width:200px;
  23. margin:0 auto;
  24. background: linear-gradient(to right, rgba(0,0,0,0) 10%, rgba(255,251,229,0.8) 25%,rgba(255,251,229,255),rgba(255,251,229,0.8) 75%, rgba(0,0,0,0) 90%) ;
  25. text-align: center;
  26. font-size:14px;
  27. font-weight:bolder;
  28. }
  29. section .content {
  30. text-align:justify;
  31. font-size:12px;
  32. color:#eee;
  33. }