imagehosting/templates/imagehost/base.html
2017-09-27 12:34:22 +03:00

39 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans:600" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css">
<style>
body {margin: 0}
.header {dispaly: block;
color: black ;
background: linear-gradient(#f3f3f3, #e0e0e0);
//height: 50px;
padding: 10px 25px;
font-size: 30px
}
.menu-icon {
display: inline-block;
float: right;
//color: #696969;
color: black;
padding: 1px;
}
.logo {
font-family: 'Open Sans', sans-serif;
color: #696969;
}
</style>
</head>
<body>
<div class='header'> <span class='logo'>LOGO </span> <a class='menu-icon' href =""><i class="fa fa-bars"></i></a> </div>
{% block content %}
{% endblock%}
</body>
</html>