-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtopbar.php
More file actions
26 lines (24 loc) · 715 Bytes
/
topbar.php
File metadata and controls
26 lines (24 loc) · 715 Bytes
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
<style>
.logo {
margin: auto;
font-size: 20px;
background: white;
padding: 5px 11px;
border-radius: 50% 50%;
color: #000000b3;
}
</style>
<nav class="navbar navbar-dark bg-dark fixed-top " style="padding:0;">
<div class="container-fluid mt-2 mb-2">
<div class="col-lg-12">
<div class="col-md-1 float-left" style="display: flex;">
<div class="logo">
<i class="fa fa-poll-h"></i>
</div>
</div>
<div class="col-md-2 float-right text-white" style= "font-size:140%; background-size:60%;">
<a href="ajax.php?action=logout" class="text-white"><?php echo $_SESSION['login_name'] ?> <i class="fa fa-power-off"></i></a>
</div>
</div>
</div>
</nav>