author | nowmad@23.1.168.192.in-addr.arpa |
Thu, 17 Dec 2015 12:15:57 +0100 | |
changeset 68 | 69977e2aa39e |
parent 53 | 30e7ac1ff04a |
child 73 | 79a23f4911f9 |
permissions | -rw-r--r-- |
68
69977e2aa39e
improve general design of components
nowmad@23.1.168.192.in-addr.arpa
parents:
53
diff
changeset
|
1 |
$base-url: "/corpus/"; |
69977e2aa39e
improve general design of components
nowmad@23.1.168.192.in-addr.arpa
parents:
53
diff
changeset
|
2 |
|
5
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
3 |
#corpus-app { |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
4 |
border: 1px solid; |
37
343750d4d38e
small improvment of style and add forgotten tabs "thematiques"
nowmad@nowmads-macbook-pro.local
parents:
13
diff
changeset
|
5 |
width: 1108px; |
68
69977e2aa39e
improve general design of components
nowmad@23.1.168.192.in-addr.arpa
parents:
53
diff
changeset
|
6 |
height: 600px; |
5
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
7 |
display: block; |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
8 |
margin-left: auto; |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
9 |
margin-right: auto; |
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
10 |
margin-bottom: 10px; |
44 | 11 |
|
68
69977e2aa39e
improve general design of components
nowmad@23.1.168.192.in-addr.arpa
parents:
53
diff
changeset
|
12 |
@import 'tabs/chrono'; |
69977e2aa39e
improve general design of components
nowmad@23.1.168.192.in-addr.arpa
parents:
53
diff
changeset
|
13 |
@import 'tabs/carto'; |
69977e2aa39e
improve general design of components
nowmad@23.1.168.192.in-addr.arpa
parents:
53
diff
changeset
|
14 |
@import 'tabs/langues'; |
69977e2aa39e
improve general design of components
nowmad@23.1.168.192.in-addr.arpa
parents:
53
diff
changeset
|
15 |
@import 'tabs/discours'; |
69977e2aa39e
improve general design of components
nowmad@23.1.168.192.in-addr.arpa
parents:
53
diff
changeset
|
16 |
@import 'tabs/thematiques'; |
13 | 17 |
} |
5
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
18 |
|
37
343750d4d38e
small improvment of style and add forgotten tabs "thematiques"
nowmad@nowmads-macbook-pro.local
parents:
13
diff
changeset
|
19 |
.mapdiv{ |
343750d4d38e
small improvment of style and add forgotten tabs "thematiques"
nowmad@nowmads-macbook-pro.local
parents:
13
diff
changeset
|
20 |
width: 470px; |
343750d4d38e
small improvment of style and add forgotten tabs "thematiques"
nowmad@nowmads-macbook-pro.local
parents:
13
diff
changeset
|
21 |
background-color: #FFFFFF; |
343750d4d38e
small improvment of style and add forgotten tabs "thematiques"
nowmad@nowmads-macbook-pro.local
parents:
13
diff
changeset
|
22 |
height: 500px; |
343750d4d38e
small improvment of style and add forgotten tabs "thematiques"
nowmad@nowmads-macbook-pro.local
parents:
13
diff
changeset
|
23 |
} |
343750d4d38e
small improvment of style and add forgotten tabs "thematiques"
nowmad@nowmads-macbook-pro.local
parents:
13
diff
changeset
|
24 |
|
13 | 25 |
.corpus-app { |
26 |
@at-root { |
|
27 |
@import 'container'; |
|
28 |
@import 'player'; |
|
29 |
@import 'results'; |
|
30 |
||
31 |
&-container{ |
|
32 |
display: block; |
|
33 |
width: 50%; |
|
68
69977e2aa39e
improve general design of components
nowmad@23.1.168.192.in-addr.arpa
parents:
53
diff
changeset
|
34 |
height: 600px; |
13 | 35 |
float: left; |
36 |
border-top: none; |
|
37 |
border-right: 1px solid grey; |
|
38 |
} |
|
39 |
&-wrapper{ |
|
68
69977e2aa39e
improve general design of components
nowmad@23.1.168.192.in-addr.arpa
parents:
53
diff
changeset
|
40 |
height: 600px; |
13 | 41 |
display : flex; |
42 |
flex-flow: column; |
|
43 |
border: none; |
|
44 |
padding: 0 10px; |
|
45 |
} |
|
46 |
&-player{ |
|
47 |
flex: 0 1 auto; |
|
48 |
float: left; |
|
49 |
border-left: none; |
|
50 |
border-top: none; |
|
53 | 51 |
margin-bottom: 10px; |
52 |
background-color: #eeeeee; |
|
13 | 53 |
} |
54 |
} |
|
5
d4b3da0dadc9
init ember app with 2 pages and an images
nowmad@23.1.168.192.in-addr.arpa
parents:
diff
changeset
|
55 |
} |