-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathindex.html
80 lines (72 loc) · 3.09 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bruno Rodrigues - Responsive Timeline with css</title>
<meta name="description" content="Responsive timeline with css/scss. Customize of your way to use in your projects.">
<meta name="viewport" content="width=device-width, minimum-scale= 1.0, initial-scale= 1.0">
<!-- stylesheets -->
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin>
<link href="https://fonts.googleapis.com/css?family=Dosis:400,600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/style/base.css">
</head>
<body>
<header>
<div class="container">
<h1 class="logo">BRUNO<span>RODRIGUES</span></h1>
<div class="social">
<a class="btn" target="_blank" href="http://github.com/itbruno">Github</a>
<a class="btn" target="_blank" href="http://www.twitter.com/_brunoweb">Twitter</a>
</div>
</div>
</header>
<div class="container">
<h2 class="project-name">Responsive Timeline</h2>
<div class="text-center">
<a class="github-button" href="https://github.com/itbruno/responsive-timeline" data-icon="octicon-star" data-size="large" data-show-count="true" aria-label="Star itbruno/responsive-timeline on GitHub">Star</a>
<a class="github-button" href="https://github.com/itbruno/responsive-timeline/archive/master.zip" data-icon="octicon-cloud-download" data-size="large" aria-label="Download itbruno/responsive-timeline on GitHub">Download</a>
</div>
<!-- Timeline begin here -->
<div id="timeline">
<div class="timeline-item">
<div class="timeline-icon">
<img src="assets/images/notifications.svg" width="25px" alt="">
</div>
<div class="timeline-content">
<h2>Notifications plugin</h2>
<p>
A useful and simple fixed notifications to show info, alerts and anything. Created for fun and learning.
</p>
<a href="https://github.com/itbruno/notifyme" target="_blank" class="btn">Get code</a>
</div>
</div>
<div class="timeline-item">
<div class="timeline-icon">
<img src="assets/images/image.svg" width="25px" alt="">
</div>
<div class="timeline-content right">
<h2>CSS hover effect with Sass/Less</h2>
<p>
Image content with description building with pure CSS3 and with suport to popular preprocessors Sass/Less.
</p>
<a href="https://github.com/itbruno/InContent" target="_blank" class="btn">Get code</a>
</div>
</div>
<div class="timeline-item">
<div class="timeline-icon">
<img src="assets/images/pull-request.svg" width="25px" alt="">
</div>
<div class="timeline-content">
<h2>Work in progress</h2>
<p>
If you wanna contribute to a simple project which calculate price about hour, enjoy!!
</p>
<a href="https://github.com/itbruno/quantovale" target="_blank" class="btn">Contribute now</a>
</div>
</div>
</div>
<!-- Timeline ends here -->
</div>
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>