-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.css
60 lines (49 loc) · 903 Bytes
/
home.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
body{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: sans-serif;
}
.layout{
display: flex;
flex-direction: column;
color: #260603;
}
header, footer{
background-color: #592715;
height: 50px;
padding-left: 20px;
color: white;
}
section{
display: flex;
min-height: calc(100vh - 100px);
}
nav{
background-color: #D98841;
flex-grow: 0.5;
padding-top: 20px;
padding-left: 20px;
display: grid;
grid-template-rows: 150px;
}
article{
flex-grow: 6;
height: auto;
background-color: #D98841;
}
h1{
margin: 40px;
color: gray;
}
#imgnav{
height: 90px;
}
#navegador a {
color: #260603;
text-decoration: none;
}
#navegador a:hover {
color: white;
background-color: #592715;
}