Skip to content

Commit bcad97f

Browse files
committed
Merge branch 'design' into main
2 parents 2e75d11 + 5d26bb5 commit bcad97f

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

estilos/style.css

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
* {
2+
font-family: Arial, Helvetica, sans-serif;
3+
font-size: 16px;
4+
}
5+
6+
body{
7+
background-color: blueviolet;
8+
9+
}
10+
11+
main {
12+
background-color: white;
13+
width: 500px;
14+
margin: auto;
15+
padding: 10px;
16+
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.473);
17+
}

index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
<meta charset="UTF-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7-
<title>Document</title>
7+
<title>Título do Site</title>
8+
<link rel="stylesheet" href="estilos/style.css">
89
</head>
910
<body>
1011
<main>

0 commit comments

Comments
 (0)