Touchgui/www/css/main.css

Thu, 04 Jun 2015 14:50:33 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 04 Jun 2015 14:50:33 +0200
changeset 0
e8ccd40d0ef6
permissions
-rw-r--r--

Genesis of lecture sources for Droidcon Berlin 2015 in Postbahnhof.

     1 .center{
     2     text-align: center;
     3 }
     5 h1{
     6     font-style: italic;
     7 }
     9 #notifier_circle{
    10     display: inline-block;
    11     margin-top: 18px;
    12     -webkit-animation-name: spin;
    13     -webkit-animation-duration: 3s;
    14     -webkit-animation-iteration-count: infinite;
    15     -webkit-animation-timing-function: linear;
    16     -moz-animation-name: spin;
    17     -moz-animation-duration: 3s;
    18     -moz-animation-iteration-count: infinite;
    19     -moz-animation-timing-function: linear;
    20     -ms-animation-name: spin;
    21     -ms-animation-duration: 3s;
    22     -ms-animation-iteration-count: infinite;
    23     -ms-animation-timing-function: linear;
    25     border-radius: 50%;
    26  }
    28 .green{
    29     background-image: -moz-radial-gradient(45px 45px 45deg, circle cover, #80EE9F 0%, #1BCA37 100%, #AFEAAA 95%);
    30     background-image: -webkit-radial-gradient(45px 45px, circle cover, #80EE9F, #1BCA37);
    31     background-image: radial-gradient(45px 45px 45deg, circle cover, #80EE9F 0%, #1BCA37 100%, #AFEAAA 95%);
    32 }
    34 .gray{
    35     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%);
    36     background-image: -webkit-radial-gradient(45px 45px, circle cover, rgba(182, 180, 180, 0.59), rgba(178, 190, 180, 0));
    37     background-image: radial-gradient(45px 45px 45deg, circle cover, rgba(182, 180, 180, 0.59) 0%, rgba(178, 190, 180, 0) 100%, black 95%);
    38 }
    40 .redtext{
    41 	color:red;
    42 }

mercurial