12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- body{
- background: yellow;
- }
- #alert1{
- position :absolute;
- top:0px;
- background:white;
- filter:alpha(Opacity=80);-moz-opacity:0.5;opacity: 0.5;
- width:100%;
- height:100%
- }
- #alert2{
- font-family: "Arial Black";
- color: #783c78;
- font-size:20px;
- font-weight: 600;
- height: 28px;
- line-height: 28px;
- padding-left: 10px;
- padding-right: 10px;
- }
- #alert3{
- height: 133px;
- width: 540px;
- text-align: center;
- position: absolute ;
- top:40%;
- left: 30%;
- z-index:99;
- background:#f8f8f8;;
- }
- #alert4{
- font-size: 18px;
- font-weight: normal;
- font-family: "Arial Black";
- line-height: 25.6px;
- color: #783c78;
- text-size-adjust: 100%;
- border-top: 1px solid pink;
- padding-top: 15px;
- }
- #alert5 {
- font-size: 16px;
- font-weight: normal;
- height: 41px;
- line-height: 25px;
- padding-bottom: 0px;
- padding-left: 10px;
- padding-right: 10px;
- }
- #alert4:active{
- background-color:#FFCCCC ;
- }
|