style.css 821 Bytes
Newer Older
1 2 3 4 5 6
body {
   background-image:url('img/bg.jpg');
   color: #FFF;
   font-color: #FFF;
}

7 8
.blackiconcolor {color:black;}

9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
.footer-bar {
   position: fixed;
   bottom: 0;
   width: 100%;
   height: 50px;
   color: #000;
   font-color: #000;
   background-color:#d3d3d3;
}
.pure-button-success,
.pure-button-error,
.pure-button-warning,
.pure-button-secondary {
   color: white;
   border-radius: 4px;
   text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.pure-button-success {
   background: rgb(28, 184, 65); /* this is a green */
}

.pure-button-error {
   background: rgb(202, 60, 60); /* this is a maroon */
}

.pure-button-warning {
   background: rgb(223, 117, 20); /* this is an orange */
}

.pure-button-secondary {
   background: rgb(66, 184, 221); /* this is a light blue */
}
42 43 44 45

button:active {
   background: yellow;
}
nextime's avatar
nextime committed
46