-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate-about.php
More file actions
executable file
·140 lines (129 loc) · 2.34 KB
/
Copy pathtemplate-about.php
File metadata and controls
executable file
·140 lines (129 loc) · 2.34 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
<div id="body">
<div class="flex flex-2" style="min-height: 600px">
<div style="background: #224a56">
<div style="padding:60px">
<h1 itemprop="headline"><?=$the_page["page"]["H1Tag"]?></h1>
<?=$the_page["Body"];?>
</div>
</div>
<div id="aboutimage" style="background: url(https://cdn.stockbrokers.com/uploads/drrlr1s/about.jpg) no-repeat center center; background-size: cover">
</div>
</div>
<section class="facts">
<div>
<b></b>
<span>Words of Research</span>
</div>
<div>
<b></b>
<span>Visitors Since Inception</span>
</div>
<div>
<b></b>
<span>in Assets Referred</span>
</div>
</section>
<div>
<section class="inner pad-50 team" itemprop="articleBody">
<?=$the_page["Body2"]?>
</section>
</div>
</div>
<style>
h2{
font-size: 26px;
color: #657073;
}
.facts{
display: flex;
justify-content: space-around;
background: #fff;
padding:40px;
text-align: center
}
.facts > div{
display: inline-block;
}
.flex-2 a{
color: #fff
}
.facts b{
color: #2f900e;
font-size: 54px;
display: block;
font-weight: 200;
-webkit-font-smoothing: antialiased
}
.facts span{
font-size: 16px;
font-weight: bold;
color: #36383d;
}
#body .flex-2 p{
color: #fff
}
#body .flex-2 h1{
color: #44c716;
font-size: 40px;
font-weight: 200;
-webkit-font-smoothing: antialiased
}
#body{
background: #f4f4f4
}
.team > div{
display: flex;
padding:40px 0;
flex-direction: row;
justify-content: space-between;
border-bottom: 1px #ddd solid;
}
.team > div:last-child{
border: none
}
.team b{
color: #36383d
}
.team img{
margin-right:50px;
align-self: baseline;
}
.team .social{
justify-content:flex-start !important;
max-width: none;
margin:20px 0;
}
.team .social a{
color: #36383d;
border: 1px #36383d solid;
border-radius: 100%;
width: 2em;
height: 2em;
display: inline-flex;
margin: 10px;
align-items: center;
justify-content: center;
margin:0;
margin-right:10px;
}
@media only screen and (max-width:768px){
.facts > div{
display: block;
margin:20px;
}
.team img{
margin:0;
display: block;
width: auto;
max-width: 100%;
margin-bottom: 20px;
}
.facts{
display: block
}
.team > div{
display: block
}
}
</style>
<? require_once("footer.php") ?>