"css ribbon"
Bootstrap 4.0.0 Snippet by Reason706

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
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<!--I am not a professional, so I would like to hear what you think about all my code. Would like to hear the critics and advises :)-->
<!--Click on the text in button to see it's color changes ;) I know, it's simple -->
<h1>Flat Social Buttons in CSS3</h1>
<div class="container">
<div class="fb-icon-bg"></div>
<div class="fb-bg"></div>
<div class="twi-icon-bg"><i class="fab fa-facebook-f"></i> </div>
<div class="twi-bg"></div>
<div class="g-icon-bg"></div>
<div class="g-bg"></div>
</div>
<h3>Inspiration from <a href="http://www.freebiesgallery.com/flat-social-buttons/">freebiesgallery</a>
<br><br>
Made by <a href="http://twitter.com/Paul_Trinko">@pollyglot</a>
</h3>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
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
/* Taking font for text in buttons */
@import url(http://fonts.googleapis.com/css?family=Oswald);
body {
background: #c8dfeb;
font-size: 14px;
}
/* Title */
h1 {
color: #e74c3c;
font-family: 'Roboto Condensed', sans-serif;
font-weight: normal;
margin-top: 50px;
position: relative;
text-align: center;
width: 100%;
}
/* Text in footer */
h3 {
color: #2c3e50;
font-family: 'Roboto Condensed', sans-serif;
font-style: normal;
font-weight: bold;
margin-top: 400px;
position: relative;
text-align: center;
width: 100%;
}
/* Link styles */
a, a:visited, a:hover {
color: #e74c3c;
text-decoration: none;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: