client/app/slides/slides.css
author rougeronj
Thu, 01 Oct 2015 18:00:33 +0200
changeset 187 fe5933b576a7
parent 178 a3e1106b6f96
permissions -rw-r--r--
Added tag V0.1-alpha.4 for changeset d79e844ca86b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
40
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
     1
.slide {
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
     2
    margin-top: -20px;
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
     3
}
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
     4
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
     5
.slide-title,
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
     6
.slide-nav,
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
     7
.slide-content {
95
46ce67c44723 clean duplicated css
rougeronj
parents: 91
diff changeset
     8
    border-bottom:1px solid grey;
37
81ed4fbb1a64 add save fonction on a slide and update template
rougeronj
parents: 26
diff changeset
     9
}
81ed4fbb1a64 add save fonction on a slide and update template
rougeronj
parents: 26
diff changeset
    10
40
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    11
.slide-nav{
95
46ce67c44723 clean duplicated css
rougeronj
parents: 91
diff changeset
    12
    padding:10px 0;
46ce67c44723 clean duplicated css
rougeronj
parents: 91
diff changeset
    13
    display: inline-block;
106
cb13a9009bf5 improve slideshow interface and add ngTouch to handle swipe on mobile
rougeronj
parents: 105
diff changeset
    14
    width: 101%;
40
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    15
}
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    16
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    17
.slide-content{
95
46ce67c44723 clean duplicated css
rougeronj
parents: 91
diff changeset
    18
    padding:10px 0;
105
be1ff4e0593f remove unused fields in slide editor and show the entire image
rougeronj
parents: 95
diff changeset
    19
    height: 500px;
40
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    20
}
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    21
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    22
.media{
105
be1ff4e0593f remove unused fields in slide editor and show the entire image
rougeronj
parents: 95
diff changeset
    23
    height: 100%;
be1ff4e0593f remove unused fields in slide editor and show the entire image
rougeronj
parents: 95
diff changeset
    24
    padding: 20px;
be1ff4e0593f remove unused fields in slide editor and show the entire image
rougeronj
parents: 95
diff changeset
    25
}
be1ff4e0593f remove unused fields in slide editor and show the entire image
rougeronj
parents: 95
diff changeset
    26
be1ff4e0593f remove unused fields in slide editor and show the entire image
rougeronj
parents: 95
diff changeset
    27
.media figure{
be1ff4e0593f remove unused fields in slide editor and show the entire image
rougeronj
parents: 95
diff changeset
    28
    display: initial;
40
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    29
}
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    30
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    31
.media img,
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    32
.media video{
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    33
    max-height: 100%;
95
46ce67c44723 clean duplicated css
rougeronj
parents: 91
diff changeset
    34
    max-width: 100%;
46ce67c44723 clean duplicated css
rougeronj
parents: 91
diff changeset
    35
    display: block;
46ce67c44723 clean duplicated css
rougeronj
parents: 91
diff changeset
    36
    margin: auto;
172
ffdfe491869c uncomment jshint and fix minor bug
rougeronj
parents: 106
diff changeset
    37
    -webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.60);
ffdfe491869c uncomment jshint and fix minor bug
rougeronj
parents: 106
diff changeset
    38
    -moz-box-shadow: 0 0 15px 0 rgba(0,0,0,0.60);
ffdfe491869c uncomment jshint and fix minor bug
rougeronj
parents: 106
diff changeset
    39
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.60);
37
81ed4fbb1a64 add save fonction on a slide and update template
rougeronj
parents: 26
diff changeset
    40
}
81ed4fbb1a64 add save fonction on a slide and update template
rougeronj
parents: 26
diff changeset
    41
106
cb13a9009bf5 improve slideshow interface and add ngTouch to handle swipe on mobile
rougeronj
parents: 105
diff changeset
    42
.slide .caption {
37
81ed4fbb1a64 add save fonction on a slide and update template
rougeronj
parents: 26
diff changeset
    43
    color: #000;
81ed4fbb1a64 add save fonction on a slide and update template
rougeronj
parents: 26
diff changeset
    44
    position: static;
81ed4fbb1a64 add save fonction on a slide and update template
rougeronj
parents: 26
diff changeset
    45
    text-shadow: none;
81ed4fbb1a64 add save fonction on a slide and update template
rougeronj
parents: 26
diff changeset
    46
    text-align: left;
95
46ce67c44723 clean duplicated css
rougeronj
parents: 91
diff changeset
    47
    overflow: scroll;
46ce67c44723 clean duplicated css
rougeronj
parents: 91
diff changeset
    48
    height: 100%
37
81ed4fbb1a64 add save fonction on a slide and update template
rougeronj
parents: 26
diff changeset
    49
}
81ed4fbb1a64 add save fonction on a slide and update template
rougeronj
parents: 26
diff changeset
    50
105
be1ff4e0593f remove unused fields in slide editor and show the entire image
rougeronj
parents: 95
diff changeset
    51
.caption hr{
be1ff4e0593f remove unused fields in slide editor and show the entire image
rougeronj
parents: 95
diff changeset
    52
    border-color: grey;
be1ff4e0593f remove unused fields in slide editor and show the entire image
rougeronj
parents: 95
diff changeset
    53
}
be1ff4e0593f remove unused fields in slide editor and show the entire image
rougeronj
parents: 95
diff changeset
    54
37
81ed4fbb1a64 add save fonction on a slide and update template
rougeronj
parents: 26
diff changeset
    55
.original-text {
81ed4fbb1a64 add save fonction on a slide and update template
rougeronj
parents: 26
diff changeset
    56
    font-style: italic;
81ed4fbb1a64 add save fonction on a slide and update template
rougeronj
parents: 26
diff changeset
    57
}
81ed4fbb1a64 add save fonction on a slide and update template
rougeronj
parents: 26
diff changeset
    58
106
cb13a9009bf5 improve slideshow interface and add ngTouch to handle swipe on mobile
rougeronj
parents: 105
diff changeset
    59
.caption .details{
cb13a9009bf5 improve slideshow interface and add ngTouch to handle swipe on mobile
rougeronj
parents: 105
diff changeset
    60
    background-color: #F2F2F2;
cb13a9009bf5 improve slideshow interface and add ngTouch to handle swipe on mobile
rougeronj
parents: 105
diff changeset
    61
}
cb13a9009bf5 improve slideshow interface and add ngTouch to handle swipe on mobile
rougeronj
parents: 105
diff changeset
    62
40
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    63
.user-details textarea.form-control {
37
81ed4fbb1a64 add save fonction on a slide and update template
rougeronj
parents: 26
diff changeset
    64
    height: 140px;
40
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    65
    margin: 10px 0;
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    66
}
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    67
.user-details input.form-control{
95
46ce67c44723 clean duplicated css
rougeronj
parents: 91
diff changeset
    68
    margin: 10px 0;
40
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    69
}
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    70
105
be1ff4e0593f remove unused fields in slide editor and show the entire image
rougeronj
parents: 95
diff changeset
    71
.user-details label{
be1ff4e0593f remove unused fields in slide editor and show the entire image
rougeronj
parents: 95
diff changeset
    72
    margin-bottom: 0;
be1ff4e0593f remove unused fields in slide editor and show the entire image
rougeronj
parents: 95
diff changeset
    73
}
be1ff4e0593f remove unused fields in slide editor and show the entire image
rougeronj
parents: 95
diff changeset
    74
40
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    75
#back{
95
46ce67c44723 clean duplicated css
rougeronj
parents: 91
diff changeset
    76
    float:left;
46ce67c44723 clean duplicated css
rougeronj
parents: 91
diff changeset
    77
    margin: 0 10px;
37
81ed4fbb1a64 add save fonction on a slide and update template
rougeronj
parents: 26
diff changeset
    78
}
81ed4fbb1a64 add save fonction on a slide and update template
rougeronj
parents: 26
diff changeset
    79
40
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    80
#previous,
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    81
#next{
95
46ce67c44723 clean duplicated css
rougeronj
parents: 91
diff changeset
    82
    float:right;
46ce67c44723 clean duplicated css
rougeronj
parents: 91
diff changeset
    83
    margin: 0 10px;
40
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    84
}
106
cb13a9009bf5 improve slideshow interface and add ngTouch to handle swipe on mobile
rougeronj
parents: 105
diff changeset
    85
.slide .user-details p,
cb13a9009bf5 improve slideshow interface and add ngTouch to handle swipe on mobile
rougeronj
parents: 105
diff changeset
    86
.slide .user-details h4{
95
46ce67c44723 clean duplicated css
rougeronj
parents: 91
diff changeset
    87
    border: 1px solid #ededed;
46ce67c44723 clean duplicated css
rougeronj
parents: 91
diff changeset
    88
    min-height: 21px;
46ce67c44723 clean duplicated css
rougeronj
parents: 91
diff changeset
    89
    padding: 6px 12px;
46ce67c44723 clean duplicated css
rougeronj
parents: 91
diff changeset
    90
    border-radius: 4px;
40
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    91
}
4b3bebe4355d add sanitize function to accept url from the request response - enable edit on dbclick - improve html
rougeronj
parents: 37
diff changeset
    92
106
cb13a9009bf5 improve slideshow interface and add ngTouch to handle swipe on mobile
rougeronj
parents: 105
diff changeset
    93
.slide .user-details p.description{
95
46ce67c44723 clean duplicated css
rougeronj
parents: 91
diff changeset
    94
    min-height: 140px;
37
81ed4fbb1a64 add save fonction on a slide and update template
rougeronj
parents: 26
diff changeset
    95
}