-
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
Showing
11 changed files
with
179 additions
and
22 deletions.
There are no files selected for viewing
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,8 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true |
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
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.
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.
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 |
---|---|---|
@@ -1,6 +1,114 @@ | ||
:root{ | ||
--title-color: #322153; | ||
--primary-color: #34cb79; | ||
--dark-primary-color: #2fb86e; | ||
--white-color: #fff; | ||
--background-color: #f0f0f5; | ||
--form-color: #75758a; | ||
--dark-form-color: #5e5e6e; | ||
} | ||
|
||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
} | ||
|
||
html { | ||
font-family: Roboto, sans-serif; | ||
color: var(--title-color); | ||
} | ||
|
||
body { | ||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; | ||
background: var(--background-color); | ||
-webkit-app-region: drag; | ||
-webkit-font-smoothing: antialiased; | ||
margin: auto; | ||
max-width: 38rem; | ||
padding: 2rem; | ||
} | ||
|
||
header { | ||
margin: 30px 0 20px; | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
} | ||
|
||
header img { | ||
max-width: 80%; | ||
height: auto; | ||
margin-bottom: 5px; | ||
opacity: 100%; | ||
} | ||
|
||
header p { | ||
margin-bottom: 15px; | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
} | ||
|
||
main { | ||
display: flex; | ||
flex-direction: column; | ||
margin: 0 10px; | ||
justify-content: space-between; | ||
align-items: center; | ||
} | ||
|
||
form { | ||
background-color: var(--white-color); | ||
padding: 30px; | ||
box-sizing: border-box; | ||
align-items: center; | ||
} | ||
|
||
form .field { | ||
-webkit-app-region: no-drag; | ||
flex: 1; | ||
display:flex; | ||
border-radius: 8px; | ||
} | ||
|
||
form .field + .field { | ||
margin-top: 20px; | ||
} | ||
|
||
main form .field-group { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
form input { | ||
background-color: var(--background-color); | ||
border: 0; | ||
padding: 16px 24px; | ||
font-size: 16px; | ||
border-radius: 8px; | ||
outline: none; | ||
} | ||
|
||
form div a { | ||
display: flex; | ||
align-self: center; | ||
margin-top: 15px; | ||
text-align: center; | ||
} | ||
|
||
button { | ||
-webkit-app-region: no-drag; | ||
width: 260px; | ||
height: 56px; | ||
background-color: var(--form-color); | ||
border-radius: 8px; | ||
color: var(--white-color); | ||
font-weight: 700; | ||
font-size: 16px; | ||
border: 0; | ||
margin-top: 20px; | ||
outline: none; | ||
} | ||
|
||
button:active { | ||
background-color: var(--dark-form-color); | ||
} |
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 |
---|---|---|
@@ -1,12 +1,39 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Hello World!</title> | ||
<link rel="stylesheet" href="index.css"> | ||
</head> | ||
<body> | ||
<h1>💖 Hello World!</h1> | ||
<p>Welcome to your Electron application.</p> | ||
</body> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Electron Desktop App</title> | ||
<link href="https://fonts.googleapis.com/css2?family=Roboto&family=Ubuntu:wght@700&display=swap" rel="stylesheet"> | ||
<link rel="stylesheet" href="index.css"> | ||
<link rel="stylesheet" href="responsive.css"> | ||
</head> | ||
|
||
<body> | ||
<div class="content"> | ||
<header> | ||
<img src="../public/assets/inpakta_logo.png" alt="Logomarca"> | ||
<p>Startup de proteção de dados</p> | ||
</header> | ||
<main> | ||
<form action=""> | ||
<div class="field-group"> | ||
<div class="field"> | ||
<input type="text" name="username" required="required" placeholder="Usuário"> | ||
</div> | ||
<div class="field"> | ||
<input type="password" name="password" required="required" placeholder="Senha"> | ||
</div> | ||
<div class="field"> | ||
<a href="#"><strong>Criar nova conta</strong></a> | ||
</div> | ||
</div> | ||
</form> | ||
<button>Login</button> | ||
</main> | ||
</div> | ||
<script src="/scripts/index.js"></script> | ||
</body> | ||
|
||
</html> |
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
Empty file.