1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- .page {
-
- position:fixed;
-
- width:100%;
- height:92%;
-
- }
- .container {
-
- margin:100px auto 30px auto;
- width:80%;
- height:70%;
- background:rgba(0,0,0,1);
- overflow:scroll;
- }
- .footer {
-
- margin:0 auto;
- width:80%;
-
- text-align:center;
- }
- section {
-
-
- padding:15px
-
- }
- section .title {
- width:200px;
- margin:0 auto;
- 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%) ;
- text-align: center;
- font-size:14px;
- font-weight:bolder;
-
- }
- section .content {
-
- text-align:justify;
- font-size:12px;
- color:#eee;
- }
|