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