diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2014-03-30 16:03:44 -0400 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2014-03-30 16:03:44 -0400 |
| commit | d31fabf8cff5dae02e3fc759a4203bd374dddc99 (patch) | |
| tree | 888ec4e6d98154f862a3b9cd17a3394b657bc02e /boot/app/styles.css | |
| parent | 4182b5e096e081158dddd4ad5d031af94fcc63de (diff) | |
| download | jasper-client-d31fabf8cff5dae02e3fc759a4203bd374dddc99.tar.gz jasper-client-d31fabf8cff5dae02e3fc759a4203bd374dddc99.zip | |
Initial commit
Diffstat (limited to 'boot/app/styles.css')
| -rwxr-xr-x | boot/app/styles.css | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/boot/app/styles.css b/boot/app/styles.css new file mode 100755 index 0000000..b6b3155 --- /dev/null +++ b/boot/app/styles.css @@ -0,0 +1,64 @@ +body { + margin: 0 auto; + line-height: 1.7em; + font-family:Open Sans; +} + +h1, h2, h3, h4 { + font-weight:300; + color: #888; +} + +.pure-button-success, +.pure-button-error, +.pure-button-warning, +.pure-button-secondary { + color: white; + 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 */ +} + + +#menu { + margin-left: -300px; + width: 300px; + position: fixed; + top: 0; + left: 300px; + bottom: 0; + z-index: 1000; + padding:20px; +} + +#main { + margin-left:80px; +} + +.centered{ + width:300px; + height:200px; + position:absolute; + left:50%; + top:50%; + margin:-100px 0 0 -150px; +} + +.notice { + background-color: #61B842; + color: white; +}
\ No newline at end of file |
