-
Notifications
You must be signed in to change notification settings - Fork 2
/
corecom.php
100 lines (88 loc) · 3.87 KB
/
corecom.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
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
<?php
include'all.php';
?>
<style>
.bg-title{
background: rgba(60,141,188,1);
background: -moz-linear-gradient(left, rgba(60,141,188,1) 0%, rgba(60,141,188,1) 0%, rgba(60,141,188,1) 59%, rgba(80,161,208,1) 97%, rgba(80,161,208,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(60,141,188,1)), color-stop(0%, rgba(60,141,188,1)), color-stop(59%, rgba(60,141,188,1)), color-stop(97%, rgba(80,161,208,1)), color-stop(100%, rgba(80,161,208,1)));
background: -webkit-linear-gradient(left, rgba(60,141,188,1) 0%, rgba(60,141,188,1) 0%, rgba(60,141,188,1) 59%, rgba(80,161,208,1) 97%, rgba(80,161,208,1) 100%);
background: -o-linear-gradient(left, rgba(60,141,188,1) 0%, rgba(60,141,188,1) 0%, rgba(60,141,188,1) 59%, rgba(80,161,208,1) 97%, rgba(80,161,208,1) 100%);
background: -ms-linear-gradient(left, rgba(60,141,188,1) 0%, rgba(60,141,188,1) 0%, rgba(60,141,188,1) 59%, rgba(80,161,208,1) 97%, rgba(80,161,208,1) 100%);
background: linear-gradient(to right, rgba(60,141,188,1) 0%, rgba(60,141,188,1) 0%, rgba(60,141,188,1) 59%, rgba(80,161,208,1) 97%, rgba(80,161,208,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dd4b39', endColorstr='#f16f5c', GradientType=1 );
}
.bg-title2{
background: rgba(60,141,188,1);
background: -moz-linear-gradient(left, rgba(60,141,188,1) 0%, rgba(60,141,188,1) 0%, rgba(60,141,188,1) 27%, rgba(80,161,208,1) 90%, rgba(80,161,208,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(60,141,188,1)), color-stop(0%, rgba(60,141,188,1)), color-stop(27%, rgba(60,141,188,1)), color-stop(90%, rgba(80,161,208,1)), color-stop(100%, rgba(80,161,208,1)));
background: -webkit-linear-gradient(left, rgba(60,141,188,1) 0%, rgba(60,141,188,1) 0%, rgba(60,141,188,1) 27%, rgba(80,161,208,1) 90%, rgba(80,161,208,1) 100%);
background: -o-linear-gradient(left, rgba(60,141,188,1) 0%, rgba(60,141,188,1) 0%, rgba(60,141,188,1) 27%, rgba(80,161,208,1) 90%, rgba(80,161,208,1) 100%);
background: -ms-linear-gradient(left, rgba(60,141,188,1) 0%, rgba(60,141,188,1) 0%, rgba(60,141,188,1) 27%, rgba(80,161,208,1) 90%, rgba(80,161,208,1) 100%);
}
@media only screen and (max-width: 990px) {
.pm, .pro-box{
border-bottom:solid 1px silver;
padding-bottom: 10px;
}
.boxzol{
margin-bottom:20px;
}
.forum{
margin-left:5px;
margin-right:5px;
}
.forum2{
margin-left:5px;
margin-right:5px;
}
.topinfo{
margin-left:2px;
margin-right:2px;
}
}
@media only screen and (min-width: 990px) {
.pm{
border-right:solid 1px silver;
border-left:solid 1px silver;
}
.boxzol{
margin-bottom:10px;
}
.topinfo{
margin-left:10px;
margin-right:10px;
}
.forum2{
padding-left: 0px;
}
}
</style>
<div class="content-wrapper" style="min-height: 669px;">
<div class="row" style="background-color:#ecf0f5;height:5px;"></div>
<div class="row topinfo">
<div class="col-md-12" style="padding-left:10px;padding-right:10px;">
<div class="box boxzol" style="">
<div class="box-header with-border bg-title2" style="">
<h2 class="box-title" style="font-size:22px;color:white;">Admin Guy's Profile</h2>
</div>
<!-- /.box-header -->
<div class="box-body">
<div class="row">
</div>
<!-- /.row -->
</div>
<!-- ./box-body -->
<!-- /.box-footer -->
</div>
<!-- /.box -->
</div>
<!-- /.col -->
</div>
<!-- /.row -->
</div>
</div>
<?php
include'footer.php';
?>