12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- #clipPanel{
- width: 100%;
- height: 100%;
- }
- .clip-img{
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- top: 0;
- width: 100%;
- height: 100%;
- margin: 0;
- }
- .clip-img img{
- position: absolute;
- width: auto;
- height: auto;
- max-width: 100%;
- max-height: 100%;
- }
- #clip{
- position: absolute;
- z-index: 100;
- /*border: 1px solid #ccc;*/
- outline: rgba(0, 0, 0, 0.8) solid 1000px;
- }
- nav{height: 40px;}
- nav > div:first-child{
- border-right: 1px solid #cbcbcb;
- }
- .header{
- width: 100%;
- height: 40px;
- line-height: 40px;
- position: fixed;
- background-color: #fff;
- z-index: 999;
- }
- .header-link-l,
- .header-link-r{
- position: absolute;
- top:0;
- }
- .header-link-l{
- left: 10px;
- }
- .header-link-r{
- right: 10px;
- }
- .header-link-l a,
- .header-link-r a{
- color: #74bf00;
- }
- .save-btn{
- z-index: 9;
- position: absolute;
- top: 10px;
- right: 10px;
- border: none;
- background-color: #fff;
- border: 1px solid #ccc;
- width: 50px;
- height: 30px;
- }
- .bgc-000{
- background-color: #000;
- }
- .c-a8{
- color: #A8A8A8;
- }
|