-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilos.css
60 lines (52 loc) · 914 Bytes
/
estilos.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
*
{
box-sizing: border-box;
margin: 0;
padding: 0;
color: #333;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
}
body
{
background-color: rgb(255, 255, 255);
}
#ContainerHeader
{
margin: 0 auto;
position: relative;
width: 70%;
display: grid;
border: 2px solid #333;
height: 80px;
place-content: center;
background-color: rgb(20, 9, 82);
box-shadow: 5px 7px 15px 1px rgb(8, 250, 68);
}
#ContainerHeader div
{
font-family: Arial, Helvetica, sans-serif;
font-size: 40px;
display: grid;
place-content: center;
color: white;
font-weight: bold;
}
#ContainerHeader span
{
color: white;
}
#container
{
position: relative;
width: 70% ;
padding: 1rem;
text-align: center;
border: 2px solid #aaa;
margin: 0 auto;
}
h1
{
font-size: 30px;
}