0

我正在开发 sencha android 移动应用程序,sencha 中的每个组件看起来都很大,字体也很大,我完成了我的应用程序,但最后我必须做造型。

我必须使用 css 减小每个组件的大小,我该如何开始,我不太擅长 css,而且我也喜欢 sass。

我需要看什么,我在css下面使用了。

    .btnfacebook {
    background: url(../images/facebook.png) !important;
    background-repeat: no-repeat !important;
}

.btnmyapp {
    background: url(../images/myapp.png) !important;
    background-repeat: no-repeat !important;
}
.btntwitter {
    background: url(../images/twitter.png) !important;
    background-repeat: no-repeat !important;
}
.my-dataview-item {
    background: #ddd;
    border-bottom: 1px solid #ccc;
}
.my-dataview-item img {
    width: 50px;
    height : 43px;
    float: left;
    margin-right: 1em;
}
.my-dataview-item #count {
    float: right;
    -webkit-border-radius: 9px;
    -moz-border-radius: 999px;
    border-radius: 999px;
    width: -4px;
    height: 25px;
    padding: 4px;
    background: #fff;
    border: 2px solid #666;
    color: #666;
    text-align: center;
    font: 14px Arial, sans-serif;
    margin-bottom: -4px;
}
.my-dataview-item #time {
    float: right;
    margin-right: 1em;
}
.x-list-item-label div{
    padding-left: 3px;  
}
#profilePhoto {
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
#profilePicture{
    background-repeat: no-repeat;
    background-size: contain;
}
4

1 回答 1

1

最好使用 sass,并生成这样的 css 文件。您可以设置默认字体大小(仅使用 1 行),其余大小根据该大小计算。

关于如何开始的一个很好的教程可以在这里找到:

http://docs.sencha.com/touch/2-1/#!/guide/theming

于 2012-11-26T09:16:16.153 回答