12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /* pages/list/list.wxss */
- .handset{
- width: 100%;
- height: 40px;
- line-height: 40px;
- border-bottom: darkgrey solid 1px;
- }
- .handset text{
- margin-left: 12px;
- font-size: 12px;
- width: 80px;
- height: 40px;
- float: left;
- }
- .handset input{
- width: 150px;
- float: left;
- height: 30px;
- margin-top: 5px;
- }
- .handset button{
- font-size: 12px;
- color:cornsilk;
- height: 30px;
- margin-top: 5px;
- background-color: cornflowerblue;
- float: left;
- }
- .handset button:active{
- box-shadow:
- 7px 6px 28px 1px;
- transform: translateY(4px);
- }
- .project{
- width: 100%;
- height: 40px;
- line-height: 40px;
- border-bottom: darkgrey solid 1px;
- position: relative;
- }
- .project text{
- margin-left: 12px;
- font-size: 12px;
- width: 120px;
- height: 40px;
- float: left;
- }
- .project button{
- font-size: 12px;
- color:cornsilk;
- height: 30px;
- margin-top: 5px;
- background-color: cornflowerblue;
- float: left;
- }
- .project button:active{
- box-shadow:
- 7px 6px 28px 1px;
- transform: translateY(4px);
- }
- .project image{
- position: absolute;
- right: 30px;
- top: 7px;
- width: 25px;
- height: 25px;
- }
|