client/app/slideshow/slideshow.css
author rougeronj
Wed, 08 Apr 2015 00:36:37 +0200
changeset 77 ee963d1c409b
parent 39 b714bcbe915c
child 97 0afdaa004ee1
permissions -rw-r--r--
Add new serializer for the data send by Orpheo. We receive XML so we parse it to json. Then we parse some html to get the proper data of each attribute. Add xmlToJson parser module to requirements.txt
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
39
b714bcbe915c update slideshow template
rougeronj
parents: 8
diff changeset
     1
.slideshow{
b714bcbe915c update slideshow template
rougeronj
parents: 8
diff changeset
     2
	margin-top:-20px;
b714bcbe915c update slideshow template
rougeronj
parents: 8
diff changeset
     3
}
0
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
.carousel-caption {
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
    color: #000;
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
    position: static;
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     7
    text-shadow: none;
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
    text-align: left;
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
}
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    11
.carousel-indicators {
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    12
    display: none;
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    13
}
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    14
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    15
.carousel-control {
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    16
    width: 3%;
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    17
}
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    18
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    19
.carousel-control .icon-next, .carousel-control .glyphicon-chevron-right {
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    20
    right: 2%;
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    21
}
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    22
8
824c87a9084c (really) better management of slideshowModel with new api.
cavaliet
parents: 0
diff changeset
    23
.carousel-holder img{
824c87a9084c (really) better management of slideshowModel with new api.
cavaliet
parents: 0
diff changeset
    24
    max-height: 500px;
824c87a9084c (really) better management of slideshowModel with new api.
cavaliet
parents: 0
diff changeset
    25
	max-width: 100%;
824c87a9084c (really) better management of slideshowModel with new api.
cavaliet
parents: 0
diff changeset
    26
}
824c87a9084c (really) better management of slideshowModel with new api.
cavaliet
parents: 0
diff changeset
    27
0
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    28
.original-text {
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    29
    font-style: italic;
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    30
}
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    31
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    32
textarea.form-control {
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    33
    height: 140px;
cef349423167 add basic file org + client prototype
ymh <ymh.work@gmail.com>
parents:
diff changeset
    34
}
39
b714bcbe915c update slideshow template
rougeronj
parents: 8
diff changeset
    35
b714bcbe915c update slideshow template
rougeronj
parents: 8
diff changeset
    36
ul.insight{
b714bcbe915c update slideshow template
rougeronj
parents: 8
diff changeset
    37
	overflow-x: hidden;
b714bcbe915c update slideshow template
rougeronj
parents: 8
diff changeset
    38
	overflow-y: scroll;
b714bcbe915c update slideshow template
rougeronj
parents: 8
diff changeset
    39
	height: 170px; 
b714bcbe915c update slideshow template
rougeronj
parents: 8
diff changeset
    40
}
b714bcbe915c update slideshow template
rougeronj
parents: 8
diff changeset
    41
b714bcbe915c update slideshow template
rougeronj
parents: 8
diff changeset
    42
ul.insight li {
b714bcbe915c update slideshow template
rougeronj
parents: 8
diff changeset
    43
    display: block;
b714bcbe915c update slideshow template
rougeronj
parents: 8
diff changeset
    44
    height: 100%;
b714bcbe915c update slideshow template
rougeronj
parents: 8
diff changeset
    45
}
b714bcbe915c update slideshow template
rougeronj
parents: 8
diff changeset
    46
b714bcbe915c update slideshow template
rougeronj
parents: 8
diff changeset
    47
ul.insight li img{
b714bcbe915c update slideshow template
rougeronj
parents: 8
diff changeset
    48
	height: 100%;
b714bcbe915c update slideshow template
rougeronj
parents: 8
diff changeset
    49
	width: 100%;
b714bcbe915c update slideshow template
rougeronj
parents: 8
diff changeset
    50
}