-
Notifications
You must be signed in to change notification settings - Fork 8
/
smartbanner.html
123 lines (111 loc) · 2.78 KB
/
smartbanner.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
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
<html>
<head>
<style type="text/css">
.smartbanner {
left:0;top:0;
width:100%;
height:78px;
font-family: "Helvetica Neue", helvetica, arial, sans-serif;
background:#fff;
overflow:hidden;
border-bottom: 1px solid #ccc;
margin-bottom: 10px;
-webkit-font-smoothing:antialiased;
-webkit-text-size-adjust:none;
}
.smartbanner-container {
margin:0 auto;
}
.smartbanner-close {
position:absolute;
left:7px;top:7px;
display:block;
font-family:'ArialRoundedMTBold',Arial;
font-size:15px;
text-align:center;
text-decoration:none;
border-radius:14px;
-webkit-font-smoothing:subpixel-antialiased;
border:0;
width:17px;
height:17px;
line-height:17px;
color:#b1b1b3;
background:#efefef;
}
.smartbanner-close:active,.smartbanner-close:hover {
color:#333;
}
.smartbanner-icon{
position:absolute;
left:30px;
top:10px;
display:block;
width:57px;
height:57px;
background-color: #fff;
background-size:cover;
background-image: url("images/logo-play-store-banner.png");
}
.smartbanner-info{
position:absolute;
left:98px;
top:15px;
width:44%;
font-size:12px;
line-height:1.2em;
font-weight:bold;
color:#999;
}
.smartbanner-title {
font-size:15px;
line-height:17px;
color:#000;
font-weight:bold;
}
.smartbanner-button{
position:absolute;
right:20px;
top:24px;
border-bottom:3px solid #b3c833;
padding:0 10px;
min-width:12%;
height:24px;
font-size:14px;
line-height:24px;
text-align:center;
font-weight:bold;
color:#fff;
background-color:#b3c833;
text-decoration:none;
border-radius:5px;
}
.smartbanner-button:hover {
background-color: #c1d739;
border-bottom:3px solid #8c9c29;
}
.smartbanner-button-text {
text-align:center;
display:block;
padding:0 5px;
}
</style>
<meta name="viewport" content="width=device-width">
</head>
<body style="background-color: blue; padding: 0; margin: 0;">
<div class="smartbanner">
<div class="smartbanner-container">
<a href="#" class="smartbanner-close">×</a>
<span class="smartbanner-icon"></span>
<div class="smartbanner-info">
<div class="smartbanner-title">Basecamp</div>
<div>Official App</div>
<span>Free – Google Play</span>
</div>
<a href="https://play.google.com/store/apps/details?id=com.basecamp.app" class="smartbanner-button">
<span class="smartbanner-button-text">Get it</span>
</a>
</div>
</div>
</body>
</html>