Skip to content

Commit ec4d401

Browse files
.
1 parent e66fb1b commit ec4d401

File tree

8 files changed

+113
-4
lines changed

8 files changed

+113
-4
lines changed

Datas/Case/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="UTF-8">
66
<meta http-equiv="X-UA-Compatible" content="IE=edge">
77
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8-
<title>Modelo</title>
8+
<title>Datas</title>
99
<link rel="stylesheet" href="./assets/CSS/style.css">
1010
</head>
1111

IMC/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="UTF-8">
66
<meta http-equiv="X-UA-Compatible" content="IE=edge">
77
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8-
<title>Calcule seu IMC</title>
8+
<title>Cálculo de IMC</title>
99
<link rel="stylesheet" href="./assets/CSS/style.css">
1010
</head>
1111

Modelo copy/README.md

Whitespace-only changes.

Modelo copy/assets/CSS/style.css

+67
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
2+
3+
:root {
4+
--primary-color: rgb(92, 67, 150);
5+
--primary-color-dark: rgb(31, 4, 94);
6+
--primary-color-light: rgb(176, 156, 224);
7+
}
8+
9+
* {
10+
box-sizing: border-box;
11+
outline: 0;
12+
}
13+
14+
body {
15+
margin: 0;
16+
padding: 0;
17+
background: var(--primary-color);
18+
font-family: 'Open sans', sans-serif;
19+
font-size: 1.3em;
20+
line-height: 1.5em;
21+
}
22+
23+
.container {
24+
max-width: 640px;
25+
margin: 50px auto;
26+
background: #fff;
27+
padding: 20px;
28+
border-radius: 10px;
29+
box-shadow: 10px 10px 20px rgba(37, 2, 112, 0.39);
30+
}
31+
32+
form input, form label, form button {
33+
display: block;
34+
width: 100%;
35+
margin-bottom: 15px;
36+
}
37+
38+
form input {
39+
font-size: 24px;
40+
height: 50px;
41+
padding: 0 20px;
42+
}
43+
44+
form input:focus {
45+
outline: 1px solid var(--primary-color) ;
46+
}
47+
48+
form button {
49+
border: none;
50+
background: var(--primary-color);
51+
color: #fff;
52+
font-size: 18px;
53+
font-weight: 700;
54+
height: 50px;
55+
cursor: pointer;
56+
border-radius: 10px;
57+
margin-top: 30px;
58+
box-shadow: 0px 10px 20px rgba(43, 11, 117, 0.39);
59+
}
60+
61+
form button:hover {
62+
background: var(--primary-color-dark);
63+
}
64+
65+
form button:active {
66+
background: var(--primary-color-light);
67+
}

Modelo copy/assets/JS/main.js

Whitespace-only changes.

Modelo copy/index.html

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<!DOCTYPE html>
2+
<html lang="pt-br">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8+
<title>Contador</title>
9+
<link rel="stylesheet" href="./assets/CSS/style.css">
10+
</head>
11+
12+
<body>
13+
14+
<section class="container">
15+
<h1>Lorem ipsum dolor, sit amet</h1>
16+
<p>
17+
Lorem ipsum dolor sit amet consectetur adipisicing elit. Vero, unde rerum. Saepe dignissimos illo a
18+
voluptate, quam sapiente! Ratione tenetur vero tempora corrupti placeat. Rerum delectus rem velit officiis
19+
nesciunt.
20+
</p>
21+
22+
<form action="">
23+
<label for="input-teste-1">Label teste #1</label>
24+
<input type="text" id="input-teste-1">
25+
26+
<label for="input-teste-2">Label teste #2</label>
27+
<input type="password" id="input-teste-2">
28+
29+
<label for="input-teste-3">Label teste #3</label>
30+
<input type="email" id="input-teste-3">
31+
32+
<label for="input-teste-4">Label teste #4</label>
33+
<input type="number" id="input-teste-4">
34+
35+
<button>Enviar</button>
36+
</form>
37+
</section>
38+
39+
<script src="./assets/JS/main.js"></script>
40+
</body>
41+
42+
</html>

Tabuada/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="UTF-8">
66
<meta http-equiv="X-UA-Compatible" content="IE=edge">
77
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8-
<title>Modelo</title>
8+
<title>Tabuada</title>
99
<link rel="stylesheet" href="./assets/CSS/style.css">
1010
</head>
1111

Timer/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="UTF-8">
66
<meta http-equiv="X-UA-Compatible" content="IE=edge">
77
<meta name="viewport" content="width=device-width, initial-scale=1.0">
8-
<title>Modelo</title>
8+
<title>Timer</title>
99
<link rel="stylesheet" href="./assets/CSS/style.css">
1010
</head>
1111

0 commit comments

Comments
 (0)