Skip to content

Commit

Permalink
started_html_css
Browse files Browse the repository at this point in the history
  • Loading branch information
lucenasoft committed Nov 4, 2022
1 parent 03b71c1 commit 524cff3
Show file tree
Hide file tree
Showing 5 changed files with 91 additions and 0 deletions.
Binary file added template_geral/assets/css/back1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added template_geral/assets/css/back2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 45 additions & 0 deletions template_geral/assets/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

body {
padding: 0;
margin: auto;
background: url("back1.png") no-repeat fixed;
font-family: "Roboto";
}

nav {
display: flex;
align-items: center;
justify-content: space-between;
background: none;
}

nav img {
max-width: 80px;
margin-left: 50px;
}

nav ul {
display: flex;
margin-right: 50px;
color: white;
padding: 10px;
}

nav input {
font-family: "Roboto";
font-size: 15px;
padding: 10px;
padding-left: 35px;
padding-right: 35px;
border-radius: 20px;
color: white;
background: linear-gradient(90deg, rgba(60,53,203,1) 0%, rgba(12,167,199,1) 100%);
cursor: pointer;
border: none;
transition: ease-in-out 0.15s;
}

nav input:hover {
filter: drop-shadow(-1px 1px 6px white);
}
23 changes: 23 additions & 0 deletions template_geral/assets/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions template_geral/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/style.css">
<title>Document</title>
</head>
<body>
<nav>
<h1>
<img src="assets/logo.svg" alt="">
</h1>
<ul>
<input type="button" value="Sobre">
</ul>
</nav>
</body>
<footer>
<a href="https://lucenasoft.github.io/" target="_blank" rel="noreferrer noopener">&copy; Copyright 2022 Web Intelligence</a>
</footer>
</html>

0 comments on commit 524cff3

Please sign in to comment.