forked from jigahertz/orgv2_custom_buttons
-
Notifications
You must be signed in to change notification settings - Fork 3
/
netflix_theme.html
43 lines (43 loc) · 1.35 KB
/
netflix_theme.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
<!--ORG BASE THEME CUSTOM BUTTONS -->
<style>
.cbutton {
border-radius: 20px;
border: 4px solid;
border-color: #b9090b;
padding: 0px;
width: auto;
height: auto;
background-color: #b9090b;
position: relative;
text-align: center;
}
.cbutton:hover { opacity: .8; }
.cbuttontitle { color: #fff; }
</style>
<div class="row">
<!-- SPEEDTEST BUTTON -->
<div class="col-lg-2 col-sm-2"></div>
<div class="col-lg-4 col-sm-4">
<div class="panel cbutton"><a href="#speedtest-area" data-effect="mfp-zoom-out" class="inline-popups">
<div class="waves-effect waves-light btn cbuttontitle">Test Streaming Speed
<div class="pull-right">
<!--<i class="ti-exchange-vertical"></i>--> <!-- themify icon -->
</div>
</div>
</div>
</a>
</div>
<!-- REQUEST BUTTON -->
<div class="col-lg-4 col-sm-4">
<div class="panel cbutton"><a href="#new-request" data-effect="mfp-zoom-out" class="inline-popups">
<div class="waves-effect waves-light btn cbuttontitle">Search for Media
<div class="pull-right">
<!--<i class="ti-search"></i>--> <!-- themify icon -->
</div>
</div>
</div>
</a>
</div>
<div class="col-lg-2 col-sm-2"></div>
<!-- /.col-lg-4 -->
</div>