tweetcast/nodejs/client/css/style.css
author Raphael Velt <raph.velt@gmail.com>
Fri, 04 Nov 2011 16:12:32 +0100
changeset 354 19ed2a92d3c1
parent 340 a99a04556e3b
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
333
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     1
/* Browser-reset CSS */
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     2
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     3
html, body, div, span, applet, object, iframe,
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     4
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     5
a, abbr, acronym, address, big, cite, code,
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     6
del, dfn, em, img, ins, kbd, q, s, samp,
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     7
small, strike, strong, sub, sup, tt, var,
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     8
b, u, i, center,
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
     9
dl, dt, dd, ol, ul, li,
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    10
fieldset, form, label, legend,
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    11
table, caption, tbody, tfoot, thead, tr, th, td,
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    12
article, aside, canvas, details, embed, 
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    13
figure, figcaption, footer, header, hgroup, 
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    14
menu, nav, output, ruby, section, summary,
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    15
time, mark, audio, video {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    16
	margin: 0;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    17
	padding: 0;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    18
	border: 0;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    19
	font-size: 100%;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    20
	font: inherit;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    21
	vertical-align: baseline;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    22
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    23
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    24
body {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    25
	font-family: Helvetica, Arial, sans-serif;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    26
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    27
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    28
/* Liste de Tweets */
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    29
338
60dff8a71024 Added alternate configuration
Raphael Velt <raph.velt@gmail.com>
parents: 336
diff changeset
    30
#container {
60dff8a71024 Added alternate configuration
Raphael Velt <raph.velt@gmail.com>
parents: 336
diff changeset
    31
    position: absolute; left: 50%; top: 50%; margin-left: -236px; margin-top: -300px;
60dff8a71024 Added alternate configuration
Raphael Velt <raph.velt@gmail.com>
parents: 336
diff changeset
    32
}
60dff8a71024 Added alternate configuration
Raphael Velt <raph.velt@gmail.com>
parents: 336
diff changeset
    33
339
6a073c4a8578 Minor changes and bug fixes
Raphael Velt <raph.velt@gmail.com>
parents: 338
diff changeset
    34
#modeselector {
340
a99a04556e3b Added conversation mode
Raphael Velt <raph.velt@gmail.com>
parents: 339
diff changeset
    35
    position: absolute; width: 240px; top: 600px; border: 1px solid #999; font-size: 18px; text-align: center; padding: 5px; cursor: pointer;
339
6a073c4a8578 Minor changes and bug fixes
Raphael Velt <raph.velt@gmail.com>
parents: 338
diff changeset
    36
}
6a073c4a8578 Minor changes and bug fixes
Raphael Velt <raph.velt@gmail.com>
parents: 338
diff changeset
    37
333
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    38
#tweetlist {
338
60dff8a71024 Added alternate configuration
Raphael Velt <raph.velt@gmail.com>
parents: 336
diff changeset
    39
	position: absolute; left: 0; top: 0; width: 250px; height: 600px; list-style: none; border: 1px solid #999;
333
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    40
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    41
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    42
li.tweet, li.placeholder {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    43
	border: 1px solid; overflow: hidden; float: left; margin: -1px 0 0 -1px; border-color: #ccc;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    44
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    45
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    46
li.tweet {
339
6a073c4a8578 Minor changes and bug fixes
Raphael Velt <raph.velt@gmail.com>
parents: 338
diff changeset
    47
	position: relative; background: #fff; cursor: pointer;
333
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    48
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    49
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    50
li.full {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    51
    width: 240px; height: 119px; border-right: 10px solid #ff0;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    52
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    53
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    54
li.half {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    55
    width: 250px; height: 49px;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    56
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    57
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    58
li.quarter {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    59
    width: 124px; height: 44px;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    60
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    61
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    62
li.icons {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    63
    width: 24px; height: 24px;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    64
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    65
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    66
li.placeholder {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    67
    height: 0; visibility: hidden;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    68
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    69
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    70
.tweet h4 {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    71
    font-weight: bold;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    72
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    73
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    74
.quarter p {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    75
    word-break: break-all;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    76
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    77
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    78
.full h4, .full p, .half p {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    79
	margin: 5px;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    80
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    81
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    82
.full h4 {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    83
	font-size: 15px;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    84
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    85
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    86
.full p, .half p {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    87
	font-size: 12px;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    88
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    89
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    90
.quarter p {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    91
    margin: 2px; font-size: 10px;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    92
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    93
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    94
img.profile_image {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    95
	float: left;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    96
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    97
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    98
.full .profile_image {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    99
    margin: 5px; width: 48px; height: 48px;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   100
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   101
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   102
.half .profile_image {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   103
    margin: 5px; width: 39px; height: 39px;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   104
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   105
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   106
.quarter .profile_image {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   107
    margin: 2px; width: 22px; height: 22px;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   108
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   109
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   110
.icons .profile_image {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   111
    margin: 2px; width: 20px; height: 20px;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   112
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   113
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   114
.full .created_at {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   115
	font-style: italic; color: #999;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   116
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   117
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   118
.half h4, .half p.created_at, .quarter h4, .quarter p.created_at, .icons h4, .icons p {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   119
    display: none
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   120
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   121
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   122
.full .tweet_text {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   123
    clear: left;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   124
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   125
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   126
.annotations {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   127
    position: absolute; margin: 0; padding: 0; top: 0; left: 0; width: 100%; height: 100%; 
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   128
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   129
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   130
/*.icons .annotations {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   131
    position: absolute; width: 6px; height: 6px; right: 2px; bottom: 2px; border: 1px solid #ccc; z-index: 3;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   132
}*/
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   133
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   134
div.annotation {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   135
    float: left; height: 100%;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   136
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   137
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   138
div.twmain {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   139
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; overflow: hidden;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   140
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   141
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   142
.full .twmain {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   143
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   144
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   145
.half .twmain {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   146
    opacity: .9
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   147
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   148
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   149
.half.fade .twmain {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   150
    opacity: .8
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   151
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   152
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   153
.quarter .twmain {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   154
    opacity: .7
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   155
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   156
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   157
.quarter.fade .twmain {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   158
    opacity: .6
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   159
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   160
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   161
.icons .twmain {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   162
    opacity: .5
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   163
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   164
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   165
.icons.fade .twmain {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   166
    opacity: .4
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   167
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   168
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   169
/* timeline */
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   170
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   171
#timeline, #timewindow {
338
60dff8a71024 Added alternate configuration
Raphael Velt <raph.velt@gmail.com>
parents: 336
diff changeset
   172
    position: absolute; top: 0; left: 251px; height: 600px; width: 220px;  border: 1px solid #999;
333
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   173
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   174
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   175
#timeline {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   176
    z-index: 42
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   177
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   178
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   179
#timewindow {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   180
    z-index: 47
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   181
}