demos/embedded/styledemo/files/blue.qss
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 22 Jan 2010 10:32:13 +0200
changeset 1 ae9c8dab0e3e
parent 0 1918ee327afb
permissions -rw-r--r--
Revision: 201001 Kit: 201003

*
{
	color: beige;
}

QLabel, QAbstractButton 
{
    font: bold;
	color: yellow;
}

QFrame
{
    background-color: rgba(96,96,255,60%);
    border-color: rgb(32,32,196);
    border-width: 3px;
    border-style: solid;
    border-radius: 5;
    padding: 3px;
}

QAbstractButton
{
    background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
                             stop:0 lightblue, stop:0.5 darkblue);
    border-width: 3px;
    border-color: darkblue;
    border-style: solid;
    border-radius: 5;
    padding: 3px;
}

QAbstractButton:pressed
{
    background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
                             stop:0.5 darkblue, stop:1 lightblue);
    border-color: beige;
}