tweetcast/nodejs/client/css/style.css
author Raphael Velt <raph.velt@gmail.com>
Tue, 25 Oct 2011 14:48:22 +0200
changeset 335 5f83c21dee69
parent 333 4389fd4ae58f
child 336 d60efd677b50
permissions -rw-r--r--
Created conf.js file, shared between server & client
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
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    30
#tweetlist {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    31
	position: absolute; left: 50px; top: 50px; width: 250px; height: 600px; list-style: none; border: 1px solid #999;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    32
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    33
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    34
li.tweet, li.placeholder {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    35
	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
    36
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    37
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    38
li.tweet {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    39
	position: relative; background: #fff;
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.full {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    43
    width: 240px; height: 119px; border-right: 10px solid #ff0;
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.half {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    47
    width: 250px; height: 49px;
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.quarter {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    51
    width: 124px; height: 44px;
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.icons {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    55
    width: 24px; height: 24px;
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.placeholder {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    59
    height: 0; visibility: hidden;
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
.tweet h4 {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    63
    font-weight: bold;
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
.quarter p {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    67
    word-break: break-all;
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
.full h4, .full p, .half p {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    71
	margin: 5px;
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
.full h4 {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    75
	font-size: 15px;
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 p, .half p {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    79
	font-size: 12px;
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
.quarter p {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    83
    margin: 2px; font-size: 10px;
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
img.profile_image {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    87
	float: left;
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
.full .profile_image {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    91
    margin: 5px; width: 48px; height: 48px;
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
.half .profile_image {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    95
    margin: 5px; width: 39px; height: 39px;
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
.quarter .profile_image {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
    99
    margin: 2px; width: 22px; height: 22px;
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
.icons .profile_image {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   103
    margin: 2px; width: 20px; height: 20px;
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
.full .created_at {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   107
	font-style: italic; color: #999;
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
.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
   111
    display: none
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 .tweet_text {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   115
    clear: left;
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
.annotations {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   119
    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
   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
/*.icons .annotations {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   123
    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
   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
div.annotation {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   127
    float: left; 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
div.twmain {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   131
    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
   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
.full .twmain {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   135
}
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
.half .twmain {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   138
    opacity: .9
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   139
}
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
.half.fade .twmain {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   142
    opacity: .8
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
.quarter .twmain {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   146
    opacity: .7
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
.quarter.fade .twmain {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   150
    opacity: .6
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
.icons .twmain {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   154
    opacity: .5
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
.icons.fade .twmain {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   158
    opacity: .4
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
/* timeline */
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   162
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   163
#timeline, #timewindow {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   164
    position: absolute; top: 50px; left: 301px; height: 600px; width: 220px;  border: 1px solid #999;
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   165
}
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   166
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   167
#timeline {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   168
    z-index: 42
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   169
}
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
#timewindow {
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   172
    z-index: 47
4389fd4ae58f Reorganisation branche node
Raphael Velt <raph.velt@gmail.com>
parents:
diff changeset
   173
}