Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
@import '../../global/_variables'; // global variables.
2
@import '../../global/components/_mixins'; // global mixings.
3
 
4
/***
5
News Page
6
***/
7
 
8
.news-page {
9
  padding-bottom: 20px;
10
}
11
 
12
.news-page h1 {
13
  margin-bottom: 20px;
14
}
15
 
16
.news-page h2 {
17
  font-size: 38.5px;
18
  margin-bottom: 20px;
19
}
20
 
21
.news-page .top-news {
22
  margin-top: 0;
23
}
24
 
25
/*News Feeds*/
26
.news-blocks {
27
  padding: 10px;
28
  margin-bottom: 10px;
29
  background: #faf6ea;
30
  border-top: solid 2px #faf6ea;
31
}
32
 
33
.news-blocks:hover {
34
  background: #fff;
35
  border-color: #78cff8;
36
  transition: all 0.4s ease-in-out 0s;
37
  -moz-transition: all 0.4s ease-in-out 0s;
38
  -webkit-transition: all 0.4s ease-in-out 0s;
39
}
40
 
41
.news-blocks h3 {
42
  margin: 0 0 5px 0;
43
  font-size: 23px;
44
  line-height: 32px;
45
}
46
 
47
.news-blocks h3 a {
48
  color: #000;
49
}
50
 
51
.news-blocks h3 a:hover {
52
  color: #78cff8;
53
  text-decoration: none;
54
}
55
 
56
.news-blocks p {
57
  overflow: hidden;
58
}
59
 
60
.news-blocks a.news-block-btn {
61
  color: #000;
62
  display: block;
63
  font-size: 14px;
64
  background: none;
65
  padding: 5px 10px 0;
66
  text-align: right;
67
  text-decoration: none;
68
}
69
 
70
.news-blocks a.news-block-btn i {
71
  margin-left: 3px;
72
}
73
 
74
 
75
.news-blocks a.news-block-btn:hover {
76
  text-decoration: none;
77
}
78
 
79
.news-blocks img.news-block-img {
80
  width: 70px;
81
  height: 70px;
82
  margin: 5px 0px 0 10px;
83
}
84
 
85
.news-blocks .news-block-tags {
86
  margin-bottom: 8px;
87
}
88
 
89
.news-blocks .news-block-tags strong {
90
  margin-right: 10px;
91
  font-weight: 400;
92
}
93
 
94
.news-blocks .news-block-tags em {
95
  font-style: normal;
96
}
97
 
98
/*News Item Page*/
99
.news-item-page {
100
  padding: 10px 0;
101
}
102
 
103
.blog-tag-data ul {
104
  margin-bottom: 5px;
105
}
106
 
107
.blog-tag-data li {
108
  padding: 0;
109
}
110
 
111
.blog-tag-data li i {
112
  color: #78cff8;
113
}
114
 
115
.blog-tag-data li a {
116
  padding: 0;
117
  color: #555;
118
  margin-right: 8px;
119
}
120
 
121
.blog-tag-data {
122
  margin-bottom: 10px;
123
}
124
 
125
.blog-tag-data img {
126
  margin-bottom: 12px;
127
}
128
 
129
.blog-tag-data ul.blog-tags a {
130
  background: #eee;
131
  padding: 1px 4px;
132
  margin: 0 4px 4px 0;
133
  display: inline-block;
134
}
135
 
136
.blog-tag-data ul.blog-tags a:hover {
137
  background: #ddd;
138
  text-decoration: none;
139
}
140
 
141
.blog-tag-data .blog-tag-data-inner {
142
  text-align: right;
143
}
144
 
145