_list.scss
3.09 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
#page-content {
article {
dl {
width : 50%;
overflow : hidden;
padding : 0;
margin : 0
}
dt {
clear : both;
float : left;
width : 50%;
/* adjust the width; make sure the total of both is 100% */
padding : 0;
margin : 0;
* {
margin : 0 0 8px;
}
}
dd {
float : left;
width : 50%;
/* adjust the width; make sure the total of both is 100% */
padding : 0;
margin : 0
}
ol {
padding : 0;
list-style-type : none;
display : table;
> li {
counter-increment : section;
//display : flex;
margin-bottom : 15px;
text-indent: -20px;
padding-left: 20px;
}
li:before {
content : "(" counter(section) ") ";
font-family : "HelveticaNeue-Bold", Helvetica, Arial, sans-serif;
font-size : 12px;
font-weight : bold;
margin-right : 3px;
margin-top : -1px;
}
}
ul {
list-style: disc;
li {
text-indent: 0;
padding-left: 0;
}
li:before {
content : '';
}
}
ul.documents {
list-style : none;
padding : 0;
display : inline-block;
li {
float : left;
margin-right : 44px;
margin-bottom : 15px;
max-width : 115px;
overflow : hidden;
a {
&:hover {
img {
opacity : .5;
}
}
img {
-webkit-transition : all .2s;
-moz-transition : all .2s;
-ms-transition : all .2s;
-o-transition : all .2s;
transition : all .2s;
display : block;
height : 154px;
width : auto;
}
}
}
@media(min-width : 768px) {
li {
margin-right : 44px;
}
}
@media (min-width : 992px) {
li {
margin-right : 44px;
}
li:nth-of-type(4n) {
margin-right : 0;
}
}
}
ul.pdf {
list-style : none;
padding : 0;
li {
border-top :1px solid #dfdfdf;
padding :2px 0;
}
}
}
}