123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /* 容器 */
- .upload-container{
- border-radius: 10px;
- background-color: rgba(255,255,255,0.08);
- }
- /* 容器 */
- /* 上传图片 */
- .upload-icon{
- @include square(40px);
- border-radius: 50%;
- border: 2px solid rgba(255,255,255,0.2);
- }
- .upload-icon i {
- color: rgba(255,255,255,0.2);
- font-size: 20px;
- font-weight: bold;
- }
- .upload-title{
- font-size: 14px;
- line-height: 20px;
- color: rgba(255,255,255,0.4);
- margin-top: 15px;
- }
- /* 上传图片 */
- /* 默认绝对定位容器 */
- .upload-screen{
- z-index: 2;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- }
- /* 默认绝对定位容器 */
- /* 上传的其他状态 */
- .upload-other{
- z-index: 3;
- }
- .upload-other-background{
- background-color: rgba(0,0,0,0.3);
- }
- .upload-other-icon{
- @include square(80px);
- }
- .upload-other-title{
- font-size: 18px;
- line-height: 22px;
- color: #fff;
- margin-top: -3px;
- }
- /* 上传的其他状态 */
- /* small */
- .upload-container-small .upload-other-icon{
- @include square(50px);
- margin-top: -6px;
- }
- .upload-container-small .upload-other-title{
- font-size: 14px;
- line-height: 18px;
- }
- /* small */
|