-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathtools.scss
executable file
·66 lines (55 loc) · 1.56 KB
/
tools.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// TOOLS
//------------------------------------------------
//------------------------------------------------
//------------------------------------------------
.content-primary {
.tools {
@include clearfix;
.tool-item {
@include span-columns(4);
@include omega(3n);
margin-bottom: $padding-medium;
min-height: 120px;
padding: 15px;
@include bp(large) {
@include span-columns(12);
min-height: auto;
}
.tool-item-header {
margin-bottom: 10px;
img {
height: 50px;
width: auto;
}
h4 {
color: $headings-font-color;
margin-bottom: 0;
transition: $base-transition;
}
a {
&:active,
&:focus,
&:hover {
text-decoration: none;
}
}
}
.tool-item-main {
p {
color: $base-font-color;
margin-bottom: 6px;
}
ul {
padding: 0;
margin: 0;
li {
list-style: none;
padding: 0;
margin: 0;
display: inline-block;
}
}
}
}
}
}