Test Git on little cleaning code
[qwp] / qml / qwp / content / test.qml
1 import QtQuick 1.0
2 import QtWebKit 1.0
3
4 Rectangle {
5     height:  200
6     width:  200
7     color: "#141d49"
8     Rectangle {
9         id: rectangle1
10         border.color: "#0037ff"
11         gradient: Gradient {
12             GradientStop {
13                 position: 0
14                 color: "#7d7b97"
15             }
16
17             GradientStop {
18                 position: 1
19                 color: "#313f4d"
20             }
21         }
22         anchors.rightMargin: 20
23         anchors.leftMargin: 20
24         anchors.bottomMargin: 20
25         anchors.topMargin: 20
26         anchors.fill: parent
27         anchors.margins: 2
28
29         Text {
30             id: text1
31             x: 11
32             y: 12
33             width: 80
34             height: 20
35             text: "text"
36             font.pixelSize: 12
37         }
38     }
39 }