Entrega do Desafio #1
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"/>
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||||||
|
|
||||||
<title>Challenge Tourist Attractions</title>
|
<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 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"/>
|
<link rel="stylesheet" href="../dist/main.css"/>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
body{
|
body {
|
||||||
background: $background-color;
|
background: $background-color;
|
||||||
font-family: 'Poppins', sans-serif;
|
font-family: "Poppins", sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
button{
|
button {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
*{
|
* {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
@ -5,4 +5,4 @@
|
|||||||
|
|
||||||
@import "partials/container.scss";
|
@import "partials/container.scss";
|
||||||
@import "partials/form.scss";
|
@import "partials/form.scss";
|
||||||
@import "partials/slider.scss";
|
@import "partials/slider.scss";
|
||||||
|
@ -1,15 +1,15 @@
|
|||||||
// Colors
|
// Colors
|
||||||
|
|
||||||
$background-color: #FFFFFF;
|
$background-color: #ffffff;
|
||||||
$title-form-color: #000000;
|
$title-form-color: #000000;
|
||||||
$input-image-border-color: #E5E5E5;
|
$input-image-border-color: #e5e5e5;
|
||||||
$input-image-text-color: #858585;
|
$input-image-text-color: #858585;
|
||||||
$input-titulo-color: #D6D6D6;
|
$input-titulo-color: #d6d6d6;
|
||||||
$input-titulo-text-color: #858585;
|
$input-titulo-text-color: #858585;
|
||||||
$input-descrição-color: #D6D6D6;
|
$input-descrição-color: #d6d6d6;
|
||||||
$input-descrição-text-color: #858585;
|
$input-descrição-text-color: #858585;
|
||||||
$button-submit-color: #FF5A5F;
|
$button-submit-color: #ff5a5f;
|
||||||
$text-button-submit-color: #FFFFFF;
|
$text-button-submit-color: #ffffff;
|
||||||
$title-list-color: #000000;
|
$title-list-color: #000000;
|
||||||
$title-item-list-color: #333333;
|
$title-item-list-color: #333333;
|
||||||
$description-item-list-color: #858585;
|
$description-item-list-color: #858585;
|
||||||
@ -18,11 +18,11 @@ $slider-arrow-color: #858585;
|
|||||||
|
|
||||||
// Font-size
|
// Font-size
|
||||||
|
|
||||||
$title-form-font-size: 32px;
|
$title-form-font-size: 32px;
|
||||||
$input-image-font-size: 16px;
|
$input-image-font-size: 16px;
|
||||||
$input-titulo-font-size: 16px;
|
$input-titulo-font-size: 16px;
|
||||||
$input-descrição-font-size: 16px;
|
$input-descrição-font-size: 16px;
|
||||||
$button-submit-font-size: 16px;
|
$button-submit-font-size: 16px;
|
||||||
$title-list-font-size: 32px;
|
$title-list-font-size: 32px;
|
||||||
$title-item-list-font-size: 24px;
|
$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