author | Chloe Laisne <chloe.laisne@gmail.com> |
Sun, 02 Oct 2016 19:11:06 +0200 | |
changeset 313 | 706f10bcdc3c |
parent 288 | f2b77873a156 |
child 338 | 4a3899b6a7ed |
permissions | -rw-r--r-- |
269
9659e91242e1
Add subjects to notice + Background color two notice type + Remove empty notice fields
Chloe Laisne <chloe.laisne@gmail.com>
parents:
228
diff
changeset
|
1 |
.corpus-app-container.window { |
9659e91242e1
Add subjects to notice + Background color two notice type + Remove empty notice fields
Chloe Laisne <chloe.laisne@gmail.com>
parents:
228
diff
changeset
|
2 |
background-color: $light-blue; |
9659e91242e1
Add subjects to notice + Background color two notice type + Remove empty notice fields
Chloe Laisne <chloe.laisne@gmail.com>
parents:
228
diff
changeset
|
3 |
} |
9659e91242e1
Add subjects to notice + Background color two notice type + Remove empty notice fields
Chloe Laisne <chloe.laisne@gmail.com>
parents:
228
diff
changeset
|
4 |
|
217
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
5 |
.notice-component { |
228
a2497a2b6224
Notice display logic and design
Chloe Laisne <chloe.laisne@gmail.com>
parents:
226
diff
changeset
|
6 |
padding: 20px 40px; |
226 | 7 |
color: $dark-grey; |
217
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
8 |
} |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
9 |
|
288
f2b77873a156
Notice link color and underline
Chloe Laisne <chloe.laisne@gmail.com>
parents:
269
diff
changeset
|
10 |
.notice-component a { |
f2b77873a156
Notice link color and underline
Chloe Laisne <chloe.laisne@gmail.com>
parents:
269
diff
changeset
|
11 |
cursor: pointer; |
f2b77873a156
Notice link color and underline
Chloe Laisne <chloe.laisne@gmail.com>
parents:
269
diff
changeset
|
12 |
color: $dark-grey; |
f2b77873a156
Notice link color and underline
Chloe Laisne <chloe.laisne@gmail.com>
parents:
269
diff
changeset
|
13 |
text-decoration: none; |
f2b77873a156
Notice link color and underline
Chloe Laisne <chloe.laisne@gmail.com>
parents:
269
diff
changeset
|
14 |
border-bottom: 1px dashed $dark-grey; |
f2b77873a156
Notice link color and underline
Chloe Laisne <chloe.laisne@gmail.com>
parents:
269
diff
changeset
|
15 |
} |
f2b77873a156
Notice link color and underline
Chloe Laisne <chloe.laisne@gmail.com>
parents:
269
diff
changeset
|
16 |
|
f2b77873a156
Notice link color and underline
Chloe Laisne <chloe.laisne@gmail.com>
parents:
269
diff
changeset
|
17 |
.notice-component .language a { |
f2b77873a156
Notice link color and underline
Chloe Laisne <chloe.laisne@gmail.com>
parents:
269
diff
changeset
|
18 |
text-transform: capitalize; |
f2b77873a156
Notice link color and underline
Chloe Laisne <chloe.laisne@gmail.com>
parents:
269
diff
changeset
|
19 |
} |
f2b77873a156
Notice link color and underline
Chloe Laisne <chloe.laisne@gmail.com>
parents:
269
diff
changeset
|
20 |
|
228
a2497a2b6224
Notice display logic and design
Chloe Laisne <chloe.laisne@gmail.com>
parents:
226
diff
changeset
|
21 |
.notice-component .fa-close { |
a2497a2b6224
Notice display logic and design
Chloe Laisne <chloe.laisne@gmail.com>
parents:
226
diff
changeset
|
22 |
position: absolute; |
a2497a2b6224
Notice display logic and design
Chloe Laisne <chloe.laisne@gmail.com>
parents:
226
diff
changeset
|
23 |
top: 15px; |
a2497a2b6224
Notice display logic and design
Chloe Laisne <chloe.laisne@gmail.com>
parents:
226
diff
changeset
|
24 |
right: 15px; |
a2497a2b6224
Notice display logic and design
Chloe Laisne <chloe.laisne@gmail.com>
parents:
226
diff
changeset
|
25 |
color: $dark-blue; |
a2497a2b6224
Notice display logic and design
Chloe Laisne <chloe.laisne@gmail.com>
parents:
226
diff
changeset
|
26 |
cursor: pointer; |
a2497a2b6224
Notice display logic and design
Chloe Laisne <chloe.laisne@gmail.com>
parents:
226
diff
changeset
|
27 |
} |
a2497a2b6224
Notice display logic and design
Chloe Laisne <chloe.laisne@gmail.com>
parents:
226
diff
changeset
|
28 |
|
a2497a2b6224
Notice display logic and design
Chloe Laisne <chloe.laisne@gmail.com>
parents:
226
diff
changeset
|
29 |
.notice-component .fa-close::before { |
a2497a2b6224
Notice display logic and design
Chloe Laisne <chloe.laisne@gmail.com>
parents:
226
diff
changeset
|
30 |
font-size: 20px; |
a2497a2b6224
Notice display logic and design
Chloe Laisne <chloe.laisne@gmail.com>
parents:
226
diff
changeset
|
31 |
} |
a2497a2b6224
Notice display logic and design
Chloe Laisne <chloe.laisne@gmail.com>
parents:
226
diff
changeset
|
32 |
|
217
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
33 |
.notice-component h2 { |
224
d284324358b2
Remplace hexadecimal codes with sass variables
Chloe Laisne <chloe.laisne@gmail.com>
parents:
223
diff
changeset
|
34 |
color: $light-white; |
217
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
35 |
text-align: left; |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
36 |
font-size: 14px; |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
37 |
text-transform: uppercase; |
218
38e1a1446319
Player toolbar actions and display logic
Chloe Laisne <chloe.laisne@gmail.com>
parents:
217
diff
changeset
|
38 |
padding: 0px; |
217
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
39 |
} |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
40 |
|
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
41 |
.notice-component h3 { |
224
d284324358b2
Remplace hexadecimal codes with sass variables
Chloe Laisne <chloe.laisne@gmail.com>
parents:
223
diff
changeset
|
42 |
color: $light-white; |
217
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
43 |
line-height: 18px; |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
44 |
font-size: 14px; |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
45 |
padding: 5px 0px; |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
46 |
} |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
47 |
|
228
a2497a2b6224
Notice display logic and design
Chloe Laisne <chloe.laisne@gmail.com>
parents:
226
diff
changeset
|
48 |
.notice-component.overlay h2, |
a2497a2b6224
Notice display logic and design
Chloe Laisne <chloe.laisne@gmail.com>
parents:
226
diff
changeset
|
49 |
.notice-component.overlay h3 { |
a2497a2b6224
Notice display logic and design
Chloe Laisne <chloe.laisne@gmail.com>
parents:
226
diff
changeset
|
50 |
color: $dark-grey; |
a2497a2b6224
Notice display logic and design
Chloe Laisne <chloe.laisne@gmail.com>
parents:
226
diff
changeset
|
51 |
} |
a2497a2b6224
Notice display logic and design
Chloe Laisne <chloe.laisne@gmail.com>
parents:
226
diff
changeset
|
52 |
|
217
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
53 |
.notice-component table { |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
54 |
line-height: 18px; |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
55 |
border-collapse: collapse; |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
56 |
width: 100%; |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
57 |
margin-top: 15px; |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
58 |
} |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
59 |
|
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
60 |
.notice-component table tr { |
223 | 61 |
border-bottom: solid 1px $dark-blue; |
217
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
62 |
} |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
63 |
|
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
64 |
.notice-component table tr td { |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
65 |
vertical-align: top; |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
66 |
padding: 10px 0px; |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
67 |
} |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
68 |
|
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
69 |
.notice-component table tr td.title { |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
70 |
font-weight: bold; |
223 | 71 |
color: $dark-blue; |
269
9659e91242e1
Add subjects to notice + Background color two notice type + Remove empty notice fields
Chloe Laisne <chloe.laisne@gmail.com>
parents:
228
diff
changeset
|
72 |
width: 25%; |
217
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
73 |
} |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
74 |
|
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
75 |
.notice-component table tr td ul { |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
76 |
list-style: none; |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
77 |
margin: 0; |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
78 |
padding: 0; |
989b9c36b849
Toolbar and Notice component styles
Chloe Laisne <chloe.laisne@gmail.com>
parents:
diff
changeset
|
79 |
} |