Added another front page space for Yaffs info. Added roave security for composer.
[yaffs-website] / web / core / themes / classy / css / components / action-links.css
1 /**
2  * @file
3  * Styles for link buttons and action links.
4  */
5
6 .action-links {
7   list-style: none;
8   padding: 0;
9   margin: 1em 0;
10 }
11 [dir="rtl"] .action-links {
12   /* This is required to win over specificity of [dir="rtl"] ul */
13   margin-right: 0;
14 }
15 .action-links li {
16   display: inline-block;
17   margin: 0 0.3em;
18 }
19 .action-links li:first-child {
20   margin-left: 0; /* LTR */
21 }
22 [dir="rtl"] .action-links li:first-child {
23   margin-left: 0.3em;
24   margin-right: 0;
25 }
26 .button-action {
27   display: inline-block;
28   line-height: 160%;
29   padding: 0.2em 0.5em 0.3em;
30   text-decoration: none;
31 }
32 .button-action:before {
33   content: '+';
34   font-weight: 900;
35   margin-left: -0.1em; /* LTR */
36   padding-right: 0.2em; /* LTR */
37 }
38 [dir="rtl"] .button-action:before {
39   margin-left: 0;
40   margin-right: -0.1em;
41   padding-left: 0.2em;
42   padding-right: 0;
43 }