-
Notifications
You must be signed in to change notification settings - Fork 0
/
navbar-logged.php
106 lines (93 loc) · 2.49 KB
/
navbar-logged.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
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
<style>
*{
margin: 0px;
padding: 0px;
}
body{
background: #1a1a1a;
color: white;
font-family: "Poppins", sans-serif;
font-weight: 400;
font-style: normal;
text-decoration: none;
}
.navbar {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
padding-top: 30px;
font-family: "Poppins", sans-serif;
gap:150px;
}
.navtext a {
transition: color 0.3s;
text-decoration: none;
color: white;
}
.navtext a:hover{
color: #ff3700;
}
a{
text-decoration: none;
color: white;
}
.logo{
font-family: "Nova Round", system-ui;
font-weight: 400;
font-style: normal;
font-size: 40px;
color: #ff3700;
}
#logout {
border: 1.7px solid rgb(26, 26, 26);
border-radius: 25px;
padding-left: 60px;
padding-right: 60px;
padding-top: 4px;
padding-bottom: 4px;
color: white;
cursor: pointer;
font-weight: 500;
font-size: 15px;
background: #ff3700;
transition: all 0.3s;
}
#logout:hover{
background: none;
border: 1.7px solid #ff3700;
color: #ff3700;
}
</style>
</head>
<body>
<div class="navbar" style="margin-top: 10px;">
<div class="logo">
<p style="color: #ff3700;">OneStop<span style="color: white;">Cloud</span></p>
</div>
<div class="navtext"
style="text-decoration: none; display: flex; gap: 50px; font-size: 22px; cursor: pointer; flex-direction:row; justify-content:center; align-items:center;">
<div><a href="../index.php">Home</a></div>
<div><a>Features</a></div>
<div><a>Updates</a></div>
<div><a>Support</a></div>
</div>
<div class="navbutton ">
<a href="../dashboard.php">
<button id="logout" class="button" >
<span class="material-symbols-outlined">
logout
</span>
</button>
</a>
</div>
</div>
</body>
</html>