126 lines
4.3 KiB
HTML
126 lines
4.3 KiB
HTML
<html>
|
|
<head>
|
|
<title>Karaoke</title>
|
|
<h1>World Karaoke</h1>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link href="https://fonts.googleapis.com/css?family=Raleway:300,400,600,700" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
margin: 10;
|
|
width: 100% - 10px;
|
|
font-family: 'Raleway', sans-serif;
|
|
color: #cccbcb;
|
|
background: linear-gradient(#2b2b2b, #303030);
|
|
}
|
|
|
|
.top-bar {
|
|
height: 90px;
|
|
background: linear-gradient(#2b2b2b, #303030);
|
|
font-weight: bold;
|
|
padding-left: 30px;
|
|
padding-right: 30px;
|
|
display: flex;
|
|
align-items: center;
|
|
position: fixed;
|
|
width: 480px;
|
|
top: 0;
|
|
z-index: 1;
|
|
}
|
|
|
|
.content {
|
|
margin-top: 90px;
|
|
padding: 30px;
|
|
}
|
|
|
|
.topnav {
|
|
font-weight: bold;
|
|
font-family: 'Raleway', sans-serif;
|
|
background-color: linear-gradient(#2b2b2b, #303030);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.topnav a {
|
|
float: left;
|
|
color: #a5a5a5;
|
|
text-align: center;
|
|
padding: 14px 16px;
|
|
text-decoration: none;
|
|
font-size: 17px;
|
|
}
|
|
|
|
.topnav a:hover {
|
|
background-color: rgb(255, 255, 255);
|
|
color: black;
|
|
}
|
|
|
|
.topnav a.active {
|
|
background-color: linear-gradient(#2b2b2b, #303030);
|
|
color: white;
|
|
}
|
|
|
|
input[type=button] {
|
|
font-family: 'Raleway';
|
|
font-weight: bold;
|
|
font-size: 13px;
|
|
text-transform: uppercase;
|
|
vertical-align: top;
|
|
height: 28px;
|
|
min-width: 120px;
|
|
padding: 0px 18px;
|
|
margin-right: 6px;
|
|
border-radius: 5px;
|
|
border: none;
|
|
color: #fff;
|
|
background-color: #000;
|
|
background: linear-gradient(#343434 20%, #000 100%);
|
|
cursor: pointer;
|
|
}
|
|
input[type=button].gray {
|
|
color: #121212;
|
|
background-color: #949494;
|
|
background: linear-gradient(#949494 20%, #cacaca 100%);
|
|
}
|
|
|
|
input[type=button]:enabled:hover {
|
|
background: linear-gradient(#000, #000);
|
|
border: none;
|
|
}
|
|
|
|
input[type=button].gray:enabled:hover {
|
|
background: linear-gradient(#fff, #fff);
|
|
border: none;
|
|
}
|
|
|
|
input[type=button]:active {
|
|
background: linear-gradient(#343434, #343434);
|
|
}
|
|
input[type=button].gray:active {
|
|
background: linear-gradient(#afafaf, #afafaf);
|
|
}
|
|
|
|
input[type=button]:disabled {
|
|
color: #252525;
|
|
background: linear-gradient(#575757 20%, #252525 100%);
|
|
}
|
|
|
|
input[type=button][pressed=pressed] {
|
|
color: #00b4ef;
|
|
}
|
|
|
|
</style>
|
|
<div class="topnav">
|
|
<a class="active" href="#songs">Songs</a>
|
|
<a href="#playlist">Playlist</a>
|
|
<a href="#menuItem3">menuItem3</a>
|
|
<a href="#menuItem4">menuItem4</a>
|
|
</div>
|
|
</head>
|
|
|
|
<body>
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
|
|
<script>
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|