front_idill/src/mosaic/css/mosaic.less
author bastiena
Thu, 24 May 2012 10:30:05 +0200
changeset 33 2d9b15f99b4e
parent 31 2c7fc855eba8
child 35 4267d6d27a7d
permissions -rw-r--r--
Front IDILL : search by curves added search by type added notifications added timeline improved
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
30
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
     1
/*
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
     2
* This file is part of the TraKERS\Front IDILL package.
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
     3
*
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
     4
* (c) IRI <http://www.iri.centrepompidou.fr/>
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
     5
*
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
     6
* For the full copyright and license information, please view the LICENSE
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
     7
* file that was distributed with this source code.
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
     8
*/
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
     9
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    10
/*
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    11
 * Projet : TraKERS
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    12
 * Module : Front IDILL
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    13
 * Fichier : mosaic.less
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    14
 * 
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    15
 * Auteur : alexandre.bastien@iri.centrepompidou.fr
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    16
 * 
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    17
 * Fonctionnalités : Définit les propriétés d'apparence des éléments de base de la mosaïque (les snapshots, la mosaïque en elle-même).
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    18
 *
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    19
 * Avertissement : Afin que ce fichier puisse compiler, il est nécessaire de lancer index.html depuis un chemin ne commencant pas par file:///.
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    20
 * C'est pourquoi j'utilise WAMP pour le lancer.
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    21
 */
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    22
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    23
@mosaic-border-tickness: 1px;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    24
@mosaic-background-color: #202020;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    25
@mosaic-background-image-path: url("../../img/background.png");
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    26
@selected-snapshot-background-image-path: url("../../img/selected_background.png");
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    27
@snapshots-background-color: #8D8D8D;
31
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
    28
@snapshots-margin-value: 8px;
30
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    29
@snapshots-margin: @snapshots-margin-value @snapshots-margin-value @snapshots-margin-value @snapshots-margin-value;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    30
@black: #000000;
33
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
    31
@notify-selection-background-image-path: url("../../pictos/notifications/selectionner.png");
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
    32
@notify-search-background-image-path: url("../../pictos/notifications/rechercher.png");
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
    33
@notify-point-background-image-path: url("../../pictos/notifications/confirmer.png");
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
    34
@notify-help-background-color: rgba(100, 100, 100, 0.9);
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
    35
@notify-help-border-width: 2px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
    36
@notify-help-margin: 15px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
    37
@notify-help-search-background-image-path: url("../../pictos/help/recherche.png");
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
    38
@notify-help-controls-background-image-path: url("../../pictos/help/controles.png");
30
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    39
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    40
body
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    41
{
33
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
    42
    overflow: hidden;
30
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    43
    background-color: @black;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    44
}
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    45
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    46
/*
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    47
 * Il s'agit des propriétés de la mosaïque en elle même.
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    48
 * On désactive les barres de défilement, on peut la placer à n'importe qu'elle position, elle doit être aussi large que la fenêtre du navigateur.
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    49
 * Son fond se répète.
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    50
 */
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    51
#mainPanel
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    52
{
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    53
    overflow: hidden;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    54
    position: absolute;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    55
    width: 100%;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    56
    top: 0px;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    57
    left: 0px;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    58
    background-image: @mosaic-background-image-path;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    59
    background-repeat: repeat;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    60
}
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    61
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    62
/*
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    63
 * Les divs contenant les snapshots (ou les "voisins" aussi en cas de zoom total). Ils se positionnent par défaut de gauche à droite, à l'horizontale et wrap dès
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    64
 * qu'ils ont atteint la bordure de fenêtre de droite.
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    65
 */
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    66
.snapshotDivs, .neighbourDivs
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    67
{
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    68
    background-color: @black;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    69
    margin: @snapshots-margin;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    70
    float: left;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    71
}
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    72
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    73
/*
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    74
 * Les snapshots sont des images, elles doivent remplir l'intégralité de leurs divs (snapshotDivs).
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    75
 */
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    76
.snapshots
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    77
{
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    78
    width: 100%;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    79
    height: 100%;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    80
}
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    81
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    82
/*
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    83
 * Ce sont des divs créés spécialement lors d'un prézoom. Leur fonction est d'afficher un clone du snapshot, superposé au précédent et de grandir un peu de manière
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    84
 * à faire ressortir visuellement le snapshot pointé. Leur bordure est d'une couleur différente au fond, ce qui permet de les discerner plus facilement dans la mosaïque.
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    85
 * au départ, lors de sa création, il est caché, mais apparaît dès que l'image est chargée.
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    86
 */
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    87
.prezoomContainers
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    88
{
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    89
    position: absolute;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    90
    display: none;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    91
    background-image: @selected-snapshot-background-image-path;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    92
    background-repeat: repeat;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    93
}
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    94
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    95
/*
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    96
 * Cette classe est attachée à des divs destinés à remplir les bordures d'une mosaïque locale.
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    97
 */
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    98
.blacks
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
    99
{
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
   100
    background-color: @black;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
   101
    float: left;
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
   102
}
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
   103
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
   104
/*
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
   105
 * C'est une classe appliquée aux divs "voisins", afin de les colorer lorsque l'utilisateur intéragit avec eux.
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
   106
 * Ils se positionnent exactement sur le voisin qu'ils représentent, à la manière du clone de prézoom (prezoomContainer), bien que celui-là n'est qu'un div simple
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
   107
 * ne contenant pas d'image.
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
   108
 * Au départ, l'opacité est à 0, ce qui signifie que ce div est invisible. L'opacité change lors d'intéractions avec cet objet. Le div apparaît alors.
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
   109
 */
31
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   110
.neighbourFrame
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   111
{
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   112
    position: absolute;
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   113
    //background-color: #94C6C5;
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   114
    //background-color: rgba(148, 198, 197, 1);
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   115
	background-image: @selected-snapshot-background-image-path;
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   116
    background-repeat: repeat;
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   117
	opacity: 0;
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   118
}
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   119
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   120
/*
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   121
 * 
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   122
 */
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   123
.neighbourImgBg
30
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
   124
{
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
   125
    position: absolute;
31
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   126
	background-image: @mosaic-background-image-path;
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   127
}
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   128
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   129
/*
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   130
 * 
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   131
 */
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   132
.neighbourImg
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   133
{
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   134
    position: absolute;
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   135
}
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   136
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   137
video
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   138
{
2c7fc855eba8 FRONT IDILL :
bastiena
parents: 30
diff changeset
   139
	//position: absolute;
33
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   140
}
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   141
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   142
.notifications
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   143
{
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   144
	position: absolute;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   145
	width: 100px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   146
	height: 100px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   147
	background-repeat: no-repeat;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   148
	background-position: 0px 0px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   149
	background-size: 100px 100px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   150
	opacity: 0;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   151
	margin: 15px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   152
	z-index: 400;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   153
}
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   154
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   155
#notify_selection
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   156
{
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   157
	background-image: @notify-selection-background-image-path;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   158
}
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   159
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   160
#notify_search
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   161
{
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   162
	background-image: @notify-search-background-image-path;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   163
}
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   164
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   165
#notify_point
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   166
{
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   167
	background-image: @notify-point-background-image-path;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   168
}
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   169
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   170
/*
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   171
 * Aide
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   172
 */
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   173
#notify_help
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   174
{
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   175
	position: absolute;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   176
	margin: @notify-help-margin;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   177
	border-style: solid;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   178
	border-width: @notify-help-border-width;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   179
	border-color: #fff;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   180
	background-color: @notify-help-background-color;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   181
}
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   182
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   183
#help_search
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   184
{
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   185
	float: left;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   186
	top: 0%;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   187
	width: 50%;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   188
	height: 100%;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   189
	background: transparent;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   190
}
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   191
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   192
#help_controls
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   193
{
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   194
	float: left;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   195
	top: 0%;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   196
	width: 50%;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   197
	height: 100%;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   198
	background: transparent;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   199
}
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   200
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   201
#help_sep
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   202
{
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   203
	position: absolute;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   204
	top: 10%;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   205
	left: 50%;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   206
	width: 1px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   207
	height: 80%;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   208
	background-color: #fff;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   209
}
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   210
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   211
#search_title, #controls_title
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   212
{
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   213
	position: relative;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   214
	color: #fff;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   215
	//font-family: DIN-Medium, Fallback, sans-serif;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   216
	font-size: 30px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   217
	text-align: center;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   218
	font-weight: bold;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   219
	margin-top: 15px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   220
	margin-bottom: 15px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   221
}
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   222
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   223
#search_img
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   224
{
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   225
	background-image: @notify-help-search-background-image-path;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   226
	background-position: center center;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   227
	background-repeat: no-repeat;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   228
	background-size: 150px 150px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   229
	height: 150px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   230
}
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   231
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   232
#controls_img
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   233
{
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   234
	background-image: @notify-help-controls-background-image-path;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   235
	background-position: center center;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   236
	background-repeat: no-repeat;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   237
	//background-size: 150px 150px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   238
	height: 150px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   239
}
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   240
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   241
#search_2hands_text, #search_body_text, #controls_1hand_text
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   242
{
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   243
	position: relative;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   244
	clear: both;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   245
	color: #fff;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   246
	//font-family: DIN-Medium, Fallback, sans-serif;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   247
	font-size: 15px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   248
	text-align: center;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   249
	font-weight: bold;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   250
	margin-top: 10px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   251
	margin-bottom: 10px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   252
}
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   253
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   254
#search_2hands_imgs, #controls_1hand_imgs
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   255
{
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   256
	padding-left: 40px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   257
}
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   258
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   259
.notify_imgs_small
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   260
{
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   261
	float: left;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   262
	width: 80px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   263
	height: 80px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   264
	background-position: 0px 0px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   265
	//background-size: 80px 80px;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   266
	background-repeat: no-repeat;
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   267
}
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   268
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   269
.notify_imgs_small
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   270
{
2d9b15f99b4e Front IDILL :
bastiena
parents: 31
diff changeset
   271
	margin: 4px;
30
45c889eae324 Front IDILL :
bastiena
parents:
diff changeset
   272
}