Touchgui/www/css/main.css

changeset 0
e8ccd40d0ef6
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/Touchgui/www/css/main.css	Thu Jun 04 14:50:33 2015 +0200
     1.3 @@ -0,0 +1,42 @@
     1.4 +.center{
     1.5 +    text-align: center;
     1.6 +}
     1.7 +
     1.8 +h1{
     1.9 +    font-style: italic;
    1.10 +}
    1.11 +
    1.12 +#notifier_circle{
    1.13 +    display: inline-block;
    1.14 +    margin-top: 18px;
    1.15 +    -webkit-animation-name: spin;
    1.16 +    -webkit-animation-duration: 3s;
    1.17 +    -webkit-animation-iteration-count: infinite;
    1.18 +    -webkit-animation-timing-function: linear;
    1.19 +    -moz-animation-name: spin;
    1.20 +    -moz-animation-duration: 3s;
    1.21 +    -moz-animation-iteration-count: infinite;
    1.22 +    -moz-animation-timing-function: linear;
    1.23 +    -ms-animation-name: spin;
    1.24 +    -ms-animation-duration: 3s;
    1.25 +    -ms-animation-iteration-count: infinite;
    1.26 +    -ms-animation-timing-function: linear;
    1.27 +    
    1.28 +    border-radius: 50%;
    1.29 + }
    1.30 +
    1.31 +.green{
    1.32 +    background-image: -moz-radial-gradient(45px 45px 45deg, circle cover, #80EE9F 0%, #1BCA37 100%, #AFEAAA 95%);
    1.33 +    background-image: -webkit-radial-gradient(45px 45px, circle cover, #80EE9F, #1BCA37);
    1.34 +    background-image: radial-gradient(45px 45px 45deg, circle cover, #80EE9F 0%, #1BCA37 100%, #AFEAAA 95%);
    1.35 +}
    1.36 +
    1.37 +.gray{
    1.38 +    background-image: -moz-radial-gradient(45px 45px 45deg, circle cover, rgba(182, 180, 180, 0.59) 0%, rgba(178, 190, 180, 0) 100%, black 95%);
    1.39 +    background-image: -webkit-radial-gradient(45px 45px, circle cover, rgba(182, 180, 180, 0.59), rgba(178, 190, 180, 0));
    1.40 +    background-image: radial-gradient(45px 45px 45deg, circle cover, rgba(182, 180, 180, 0.59) 0%, rgba(178, 190, 180, 0) 100%, black 95%);
    1.41 +}
    1.42 +
    1.43 +.redtext{
    1.44 +	color:red;
    1.45 +}
    1.46 \ No newline at end of file

mercurial