-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblock-content-alert-float.html
More file actions
141 lines (113 loc) · 4.77 KB
/
block-content-alert-float.html
File metadata and controls
141 lines (113 loc) · 4.77 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
fdsfafdf<!DOCTYPE html>
<html dir="ltr" lang="en-US">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta http-equiv="x-ua-compatible" content="IE=edge">
<meta name="author" content="romellsweb">
<meta name="description" content="Get romellsweb to build powerful websites easily with the Highly Customizable & Best Selling Bootstrap Template, today.">
<!-- Font Imports -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Lato:wght@400;500;600;700&display=swap" rel="stylesheet">
<!-- Core Style -->
<link rel="stylesheet" href="style.css">
<!-- Font Icons -->
<link rel="stylesheet" href="css/font-icons.css">
<!-- Plugins/Components CSS -->
<link rel="stylesheet" href="css/swiper.css">
<!-- Custom CSS -->
<link rel="stylesheet" href="css/custom.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Document Title
============================================= -->
<title>Alert - Sticky | romellsweb</title>
<style>
.sticky-float-bottom {
position: -webkit-sticky !important;
position: sticky !important;
top: calc(100vh - 134px); /* 100vh - alert-height() - 30px */
}
@media (min-width: 992px) {
.sticky-float-bottom {
top: calc(100vh - 94px); /* 100vh - alert-height() - 30px */
}
}
</style>
</head>
<body class="stretched">
<!-- Document Wrapper
============================================= -->
<div id="wrapper">
<!-- Header
============================================= -->
<header id="header" class="no-sticky">
<div id="header-wrap">
<div class="container">
<div class="header-row justify-content-between">
<h3 class="mb-0">Header</h3>
<!-- Primary Navigation icon in mobile
============================================= -->
<div class="primary-menu-trigger">
<button class="cnvs-hamburger" type="button" title="Open Mobile Menu">
<span class="cnvs-hamburger-box"><span class="cnvs-hamburger-inner"></span></span>
</button>
</div>
<!-- Primary Navigation
============================================= -->
<nav class="primary-menu">
<ul class="menu-container justify-content-center">
<li class="menu-item current">
<a class="menu-link" href="#">
<div>Menu 1</div>
</a>
</li>
<li class="menu-item">
<a class="menu-link" href="#">
<div>Menu 2</div>
</a>
</li>
</ul>
</nav><!-- #primary-menu end -->
</div>
</div>
</div>
<div class="header-wrap-clone"></div>
</header>
<!-- Content
============================================= -->
<section id="content">
<div class="content-wrap overflow-visible bg-dark pb-0">
<div class="container alert alert-success sticky-float-bottom" data-animate="fadeInUp faster">
<div class="row justify-content-between align-items-center">
<div class="col-lg-auto">
<strong><i class="bi-boxes"></i> Good News!</strong> Back to the future of Awesome Templates: Introducing Our <a href="#" class="alert-link"><u>romellsweb</u></a> Template.
</div>
<div class="col-lg-auto mt-3 mt-lg-0">
<a href="#" class="btn btn-success">Shop Now</a>
<button type="button" class="btn btn-close btn-sm float-lg-none text-dark ms-md-3" data-bs-dismiss="alert" aria-hidden="true"></button>
</div>
</div>
</div>
<div class="row justify-content-center align-items-center text-center dark">
<div class="col-12">
<h1 class="display-3">Content <br><span class="text-white-50">...</span></h1>
<a href="block-content-alert.html" class="btn btn-sm btn-light me-2">Default</a>
<a href="block-content-alert-sticky.html" class="btn btn-sm btn-light me-2">Sticky</a>
<a href="block-content-alert-float.html" class="btn btn-sm btn-light me-2">Float</a>
<a href="block-content-alert-top.html" class="btn btn-sm btn-light me-2">Top</a>
<a href="block-content-alert-bottom-fixed.html" class="btn btn-sm btn-light me-2">Bottom Fixed</a>
<a href="block-content-alert-custom-width.html" class="btn btn-sm btn-light">Custom Width</a>
</div>
</div>
<div class="min-vh-100"></div>
</div>
</section><!-- #content end -->
</div><!-- #wrapper end -->
<!-- Go To Top
============================================= -->
<div id="gotoTop" class="uil uil-angle-up"></div>
<!-- JavaScripts
============================================= -->
<script src="js/plugins.min.js"></script>
<script src="js/functions.bundle.js"></script>
</body>
</html>