-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhome.html
84 lines (70 loc) · 1.89 KB
/
home.html
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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>duccweb - beta</title>
<style>
.topbar_container {
background-color: #000000;
height: 100%;
width: 100%;
position: absolute;
opacity: 0;
}
.topbar {
height: 56px;
width: 100%;
margin: 0;
padding: 0;
margin-left: 6px;
display: fixed;
z-index: 99;
position: relative;
}
body {
padding: 0;
margin: 0;
background-color: grey;
background-image: url("https://i.ibb.co/Tw214F4/Roblox-Player-Beta-ez5-Gqt2j-ZG.png");
}
.topbar_button {
background-color: black;
border: 0;
margin-top: 5px;
margin-left: 13px;
opacity: 1;
border-radius: 5px;
color: white;
opacity: 0.5;
padding-top: 7px;
padding-bottom: 7px;
padding-left: 10px;
padding-right: 12px;
}
.topbar_ul:not(.topbar_menu_btn) {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
.topbar_li {
float: left;
}
.topbar_selected {
background: linear-gradient(#0099FF, #00478F);
}
</style>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Symbols+Outlined">
</head>
<body>
<div class="topbar">
<div class="topbar_container"></div>
<ul class="topbar_ul">
<li class="topbar_li topbar_menu_btn"><button class="topbar_button topbar_menu_btn" style="padding-top: 5px; padding-bottom: 5px; padding-left: 5.5px; padding-right: 5.5px; margin-left: 10px;"><span class="material-symbols-outlined" style="font-size: 20px">
menu
</span></button></li>
<li class="topbar_li"><button class="topbar_button topbar_selected">Home</button></li>
<li class="topbar_li"><button class="topbar_button">teste</button></li>
</ul>
</div>
</body>