Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/***
2
Timeline
3
***/
4
 
5
.timeline {
6
	margin: 0;
7
	padding: 0;
8
	position: relative;
9
	margin-bottom: 30px;
10
 
11
	&:before {
12
		content: '';
13
		position: absolute;
14
		display: block;
15
		width: 4px;
16
		background: #f5f6fa;
17
		top: 0px;
18
		bottom: 0px;
19
		margin-left: 38px;
20
	}
21
 
22
	.timeline-item {
23
		margin: 0;
24
		padding: 0;
25
	}
26
 
27
	.timeline-badge {
28
		float: left;
29
		position: relative;
30
		padding-right: 30px;
31
		height:80px;
32
		width:80px;
33
	}
34
 
35
	.timeline-badge-userpic {
36
		width: 80px;
37
		border: 4px #f5f6fa solid;
38
		-webkit-border-radius: 50% !important;
39
		-moz-border-radius: 50% !important;
40
		border-radius: 50% !important;
41
	}
42
 
43
	.timeline-badge-userpic img {
44
		-webkit-border-radius: 50% !important;
45
		-moz-border-radius: 50% !important;
46
		border-radius: 50% !important;
47
		vertical-align: middle !important;
48
	}
49
 
50
	.timeline-icon {
51
		width: 80px;
52
		height: 80px;
53
		background-color: #f5f6fa;
54
		-webkit-border-radius: 50% !important;
55
		-moz-border-radius: 50% !important;
56
		border-radius: 50% !important;
57
		padding-top: 30px;
58
		padding-left: 22px;
59
	}
60
 
61
	.timeline-icon i {
62
		font-size: 34px;
63
	}
64
 
65
	.timeline-body {
66
		position: relative;
67
		padding: 20px;
68
		margin-top: 20px;
69
		margin-left: 110px;
70
		background-color: #f5f6fa;
71
 
72
		@include clearfix();
73
 
74
		@include border-radius($general-border-radius);
75
	}
76
 
77
	.timeline-body-arrow {
78
		position: absolute;
79
		top: 30px;
80
		left: -14px;
81
		width: 0;
82
		height: 0;
83
		border-style: solid;
84
		border-width: 14px 14px 14px 0;
85
		border-color: transparent #f5f6fa transparent transparent;
86
	}
87
 
88
	.timeline-body-head {
89
		margin-bottom: 10px;
90
	}
91
 
92
	.timeline-body-head-caption {
93
		float: left;
94
	}
95
 
96
	.timeline-body-title {
97
		font-size: 16px;
98
		font-weight: 600;
99
	}
100
 
101
	.timeline-body-alerttitle {
102
		font-size: 16px;
103
		font-weight: 600;
104
	}
105
 
106
	.timeline-body-time {
107
		font-size: 14px;
108
		margin-left: 10px;
109
	}
110
 
111
	.timeline-body-head-actions {
112
		float: right;
113
	}
114
 
115
	.timeline-body-head-actions .btn-group {
116
		margin-top: -2px;
117
	}
118
 
119
	.timeline-body-content {
120
		font-size: 14px;
121
		margin-top: 35px;
122
	}
123
 
124
	.timeline-body-img {
125
		width: 100px;
126
		height: 100px;
127
		margin: 5px 20px 0 0px;
128
	}
129
 
130
	&.white-bg {
131
		&:before {
132
			background: #fff;
133
		}
134
 
135
		.timeline-badge-userpic {
136
			border-color: #fff;
137
		}
138
 
139
		.timeline-icon {
140
			background-color: #fff;
141
		}
142
 
143
		.timeline-body {
144
			background-color: #fff;
145
		}
146
 
147
		.timeline-body-arrow {
148
			border-color: transparent #fff transparent transparent;
149
		}
150
	}
151
}
152
 
153
@media (max-width: 768px) {
154
	.timeline {
155
		.timeline-body-head-caption {
156
			width:100%;
157
		}
158
 
159
		.timeline-body-head-actions {
160
			float: left;
161
			width:100%;
162
			margin-top: 20px;
163
			margin-bottom: 20px;
164
		}
165
	}
166
}
167
 
168
 
169
@media (max-width: 480px) {
170
	.timeline {
171
		&:before {
172
			margin-left: 28px;
173
		}
174
 
175
		.timeline-badge {
176
			padding-right: 40px;
177
			width: 60px;
178
			height: 60px;
179
		}
180
 
181
 
182
		.timeline-badge-userpic {
183
			width: 60px;
184
		}
185
 
186
		.timeline-icon {
187
			width: 60px;
188
			height: 60px;
189
			padding-top: 23px;
190
			padding-left: 18px;
191
		}
192
 
193
		.timeline-icon i {
194
			font-size: 25px;
195
		}
196
 
197
		.timeline-body {
198
			margin-left: 80px;
199
		}
200
 
201
		.timeline-body-arrow {
202
			top: 17px;
203
		}
204
	}
205
}