Initial port
[editorial.git] / assets / main / sass / components / _contact.scss
1 ///
2 /// Editorial by HTML5 UP
3 /// html5up.net | @ajlkn
4 /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 ///
6
7 /* Contact */
8
9 ul.contact {
10 list-style: none;
11 padding: 0;
12
13 li {
14 @include icon;
15 border-top: solid 1px _palette(border);
16 margin: 1.5em 0 0 0;
17 padding: 1.5em 0 0 3em;
18 position: relative;
19
20 &:before {
21 color: _palette(accent);
22 display: inline-block;
23 font-size: 1.5em;
24 height: 1.125em;
25 left: 0;
26 line-height: 1.125em;
27 position: absolute;
28 text-align: center;
29 top: (1.5em / 1.5);
30 width: 1.5em;
31 }
32
33 &:first-child {
34 border-top: 0;
35 margin-top: 0;
36 padding-top: 0;
37
38 &:before {
39 top: 0;
40 }
41 }
42
43 a {
44 color: inherit;
45 }
46 }
47 }