-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
03b71c1
commit 524cff3
Showing
5 changed files
with
91 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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">© Copyright 2022 Web Intelligence</a> | ||
</footer> | ||
</html> |