jaroslav@1202: /* jaroslav@1202: Copied from knockout.js Twitter example: jaroslav@1202: http://knockoutjs.com/examples/twitter.html jaroslav@1202: */ jaroslav@1202: jaroslav@1202: .configuration, .tweets, .tweets td { font-family: Verdana; font-size: 13px; } jaroslav@1202: .configuration { background-color: #DEDEDE; border: 2px solid gray; float:left; height: 40em; width: 40%; padding: 0.5em; border-right-width:0; } jaroslav@1202: .tweets { width: 55%; border: 2px solid gray; height: 40em; overflow: scroll; overflow-x: hidden; background-color: Black; color: White; padding: 0.5em; position: relative; } jaroslav@1202: .tweets table { border-width: 0;} jaroslav@1202: .tweets tr { vertical-align: top; } jaroslav@1202: .tweets td { padding: 0.4em 0.3em 1em 0.4em; border-width: 0; } jaroslav@1202: .tweets img { width: 4em; } jaroslav@1202: .tweetInfo { color: Gray; font-size: 0.9em; } jaroslav@1202: .twitterUser { color: #77AAFF; text-decoration: none; font-size: 1.1em; font-weight: bold; } jaroslav@1202: input.invalid { border: 1px solid red !important; background-color: #FFAAAA !important; } jaroslav@1202: jaroslav@1202: .listChooser select, .listChooser button { vertical-align:top; } jaroslav@1202: .listChooser select { width: 60%; font-size:1.2em; height:1.4em; } jaroslav@1202: .listChooser button { width: 19%; height:1.68em; float:right; } jaroslav@1202: jaroslav@1202: .currentUsers { height: 28em; overflow-y: auto; overflow-x: hidden; } jaroslav@1202: .currentUsers button { float: right; height: 2.5em; margin: 0.1em; padding-left: 1em; padding-right: 1em; } jaroslav@1202: .currentUsers ul, .configuration li { list-style: none; margin: 0; padding: 0 } jaroslav@1202: .currentUsers li { height: 2.4em; font-size: 1.2em; background-color: #A7D0E3; border: 1px solid gray; margin-bottom: 0.3em; -webkit-border-radius: 5px; -moz-border-radius: 5px; -webkit-box-shadow: 0 0.2em 0.5em gray; -moz-box-shadow: 0 0.2em 0.5em gray; } jaroslav@1202: .currentUsers li div { padding: 0.6em; } jaroslav@1202: .currentUsers li:hover { background-color: #EEC; } jaroslav@1202: jaroslav@1202: .configuration form label { width: 25%; display: inline-block; text-align:right; overflow: hidden; } jaroslav@1202: .configuration form input { width:40%; font-size: 1.3em; border:1px solid silver; background-color: White; padding: 0.1em; } jaroslav@1202: .configuration form button { width: 20%; margin-left: 0.3em; height: 2em; } jaroslav@1202: jaroslav@1213: .loadingIndicator { position: absolute; top: 0.1em; left: 0.1em; font: 0.8em Arial; background-color: #229; color: White; padding: 0.2em 0.5em 0.2em 0.5em; }