-
Notifications
You must be signed in to change notification settings - Fork 0
/
passando.css
91 lines (75 loc) · 1.37 KB
/
passando.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
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: #853E16;
padding-top: 20px;
}
#grid {
display: grid;
grid-template-columns: 200px 200px 200px;
grid-template-rows: 200px 200px ;
grid-gap: 40px;
justify-content: center;
}
#grid p {
color: white;
}
#grid a:hover {
color: #260603;
background-color: #592715;
}
h1{
margin: 40px;
color: gray;
}
#imgnav{
height: 90px;
}
#navegador a {
color: #260603;
text-decoration: none;
}
#navegador a:hover {
color: white;
background-color: #592715;
}
.img-grid{
height: 200px;
}
#grid a{
color: white;
text-decoration: none;
}
#grid a:hover{
color: white;
background-color: #D98841;
}