diff options
| author | Misko Hevery | 2010-01-18 17:56:08 -0800 |
|---|---|---|
| committer | Misko Hevery | 2010-01-18 17:56:08 -0800 |
| commit | 0e566fe6cb41de388df6793b350fb81aaa4a8476 (patch) | |
| tree | dc526a2a5de174f820ef375ffcdb45e32de9cda7 /example/tweeter/style.css | |
| parent | 7b558b5382c864b00392f50fa5095e53f7b486d0 (diff) | |
| download | angular.js-0e566fe6cb41de388df6793b350fb81aaa4a8476.tar.bz2 | |
tweeter demo client
Diffstat (limited to 'example/tweeter/style.css')
| -rw-r--r-- | example/tweeter/style.css | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/example/tweeter/style.css b/example/tweeter/style.css new file mode 100644 index 00000000..769a6f45 --- /dev/null +++ b/example/tweeter/style.css @@ -0,0 +1,87 @@ +.loading {display: none;} +.fetching .loading {display: block;} + +a { + color: blue; +} + +h1 { + background-color: black; + margin: 0; + padding: .25em; + color: white; + border-bottom: 5px solid gray; +} + +.box { + border: 2px solid gray; +} + +.tweeter { + margin-right: 360px; +} + +ul { + list-style: none; + margin: 0; + padding: 0; +} + +li { + margin: .25em; + padding: 2px; +} + +li img { + float: left; + margin: 2px; + margin-right: .5em; + max-height: 48px; + min-height: 48px; +} + +li.even { + background-color: lightgray; +} + + +.addressbook { + float: right; + width: 350px; +} + +.clrleft { + clear: left; +} + +.notes { + font-size: .8em; + color: gray; +} + +.username, .nickname { + font-weight: bold; +} + +.editor { + padding: 4px; +} + +label { + color: gray; + display: inline-block; + width: 75px; + text-align: right; + padding: 2px; + margin-top: 10px; +} + +.editor input[type=text], +.editor textarea { + width: 230px; + vertical-align: text-top; +} + +.editor TEXTAREA { + height: 50px; +}
\ No newline at end of file |
