-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.php
executable file
·35 lines (31 loc) · 1.05 KB
/
profile.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
<?php
include("includes/header.php");
?>
<br>
<div style="display: flex;">
<div style="transform: translateX(25vw); display:block" >
<div class="container" style="width:50vw">
<div class="card blue-grey darken-1">
<div class="card-content white-text">
<span class="card-title">Profile Page</span>
<p>I am a very simple card. I am good at containing small bits of information.
I am convenient because I require little markup to use effectively.</p>
</div>
<div class="card-action">
<a href="#">This is a link</a>
<a href="#">This is a link</a>
</div>
</div>
</div>
</div>
<div style="display:block; position:fixed; transform: translateX(77vw);">
<div class="container white" style="width:20vw; z-index:1; border-radius:10px; box-shadow: 0px 0px 10px #B1B1B1; height: 15vh">
<div class="micro-stats">
<h2 style="font-size:16px; padding:12px">Your Stats:</h2>
<h4 style="font-size:14px; padding:12px">Followers:</h4>
</div>
</div>
</div>
</div>
</body>
</html>