forked from globalfoodbook/nutrition-facts-label
-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.php
30 lines (30 loc) · 830 Bytes
/
form.php
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
<style media="screen">
.gfb-nutrition-label-section{
padding-top: 30px;
}
#nutrition-label-outer {
background-color: white;
width: auto !important;
}
.gfb-nutrition-label-section .section2 {
padding-left: 40px
}
.gfb-nutrition-label-section .section1, .gfb-nutrition-label-section .section2 {
vertical-align: top;
display: inline-block !important;
overflow: hidden;
}
p{
font-weight: bold;
margin-left: 12px;
}
</style>
<div class='wrap'>
<div class='gfb-nutrition-label-section'>
<img id="gfb-nutrition-label-loader" src="<?php echo plugin_dir_url( __FILE__ ) .'includes/assets/images/load.gif'?>" style="display:none"/>
<p id="gfb-nutrition-label-notify" style="display:none"></p>
<div>
<?php require_once 'sections.php'; ?>
</div>
</div>
</div>