feat: adicionando editorconfig
This commit is contained in:
parent
0d20343cb2
commit
5bf636b818
13
.editorconfig
Normal file
13
.editorconfig
Normal file
@ -0,0 +1,13 @@
|
||||
# EditorConfig is awesome: https://EditorConfig.org
|
||||
|
||||
# top-most EditorConfig file
|
||||
root = true
|
||||
|
||||
[*]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
max_line_length = 100
|
@ -9,11 +9,11 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||
|
||||
<title>Challenge Tourist Attractions</title>
|
||||
|
||||
|
||||
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet"/>
|
||||
<link rel="stylesheet" href="../dist/main.css"/>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
@ -1,8 +1,8 @@
|
||||
body{
|
||||
body {
|
||||
background: $background-color;
|
||||
font-family: 'Poppins', sans-serif;
|
||||
font-family: "Poppins", sans-serif;
|
||||
}
|
||||
|
||||
button{
|
||||
button {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
*{
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
@ -5,4 +5,4 @@
|
||||
|
||||
@import "partials/container.scss";
|
||||
@import "partials/form.scss";
|
||||
@import "partials/slider.scss";
|
||||
@import "partials/slider.scss";
|
||||
|
@ -1,15 +1,15 @@
|
||||
// Colors
|
||||
|
||||
$background-color: #FFFFFF;
|
||||
$background-color: #ffffff;
|
||||
$title-form-color: #000000;
|
||||
$input-image-border-color: #E5E5E5;
|
||||
$input-image-border-color: #e5e5e5;
|
||||
$input-image-text-color: #858585;
|
||||
$input-titulo-color: #D6D6D6;
|
||||
$input-titulo-color: #d6d6d6;
|
||||
$input-titulo-text-color: #858585;
|
||||
$input-descrição-color: #D6D6D6;
|
||||
$input-descrição-color: #d6d6d6;
|
||||
$input-descrição-text-color: #858585;
|
||||
$button-submit-color: #FF5A5F;
|
||||
$text-button-submit-color: #FFFFFF;
|
||||
$button-submit-color: #ff5a5f;
|
||||
$text-button-submit-color: #ffffff;
|
||||
$title-list-color: #000000;
|
||||
$title-item-list-color: #333333;
|
||||
$description-item-list-color: #858585;
|
||||
@ -18,11 +18,11 @@ $slider-arrow-color: #858585;
|
||||
|
||||
// Font-size
|
||||
|
||||
$title-form-font-size: 32px;
|
||||
$title-form-font-size: 32px;
|
||||
$input-image-font-size: 16px;
|
||||
$input-titulo-font-size: 16px;
|
||||
$input-descrição-font-size: 16px;
|
||||
$button-submit-font-size: 16px;
|
||||
$title-list-font-size: 32px;
|
||||
$title-item-list-font-size: 24px;
|
||||
$description-item-list-font-size: 16px;
|
||||
$description-item-list-font-size: 16px;
|
||||
|
Loading…
Reference in New Issue
Block a user