-
Notifications
You must be signed in to change notification settings - Fork 2
/
estilos.css
133 lines (127 loc) · 2.37 KB
/
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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
* {
font-family: "DM Sans", sans-serif;
box-sizing: border-box;
scroll-behavior: smooth;
}
body {
background-color: #F4F4F4;
}
.main {
display: grid;
grid-template: "nav nav nav" 100px "content content aside" auto "footer footer footer" 200px/1fr 1fr 480px;
}
.navbar {
grid-area: nav;
background-color: white;
padding: 10px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-areas: "image ul ul";
align-content: space-between;
}
.navbar img {
grid-area: image;
}
.navbar ul {
grid-area: ul;
list-style-type: none;
border-radius: 5px;
}
.navbar ul li {
display: inline-block;
padding: 10px;
margin: 0px 5px 0px 5px;
}
.navbar ul li :hover {
background-color: #D61F51;
border-radius: 5px;
color: white;
padding: 10px;
transition: all 400ms;
}
.navbar ul li a {
text-decoration: none;
}
.navbar ul .blog {
background-color: #D61F51;
border-radius: 5px;
}
.navbar ul .blog a {
color: white;
}
.content {
grid-area: content;
background-color: #F4F4F4;
}
.content h1 {
width: 100vw;
height: 200px;
background-image: url("/styles/images/image6.png");
margin: 0;
display: flex;
color: white;
padding-left: 200px;
align-items: center;
text-shadow: 0px 0px 5px black;
}
.content section {
padding: 10px 50px 10px 200px;
}
.aside {
grid-area: aside;
padding: 20px;
background-color: #e6e2e2;
position: -webkit-sticky;
position: sticky;
height: 410px;
margin: 80px 200px 0px 0px;
top: 50px;
z-index: 2;
border-radius: 10px;
display: grid;
grid-template-rows: 190px 20px;
box-shadow: 0px 3px 5px black;
}
.aside a {
text-decoration: none;
color: black;
}
.aside h3 {
text-align: center;
color: rgb(49, 49, 49);
}
.aside h3 :hover {
color: rgb(0, 0, 0);
transition: all 400ms;
}
.aside ul {
display: flex;
flex-direction: column;
list-style-type: none;
padding: 0;
justify-content: center;
}
.aside ul li {
padding: 10px;
}
.aside ul li :hover {
background-color: #979797;
border-radius: 5px;
padding: 10px;
width: 100%;
color: white;
margin: 0px 2px 0px 2px;
transition: all 400ms;
}
.footer {
grid-area: footer;
background-color: #D61F51;
}
.footer .image {
padding: 20px 40px;
color: white;
}
.footer img {
width: 180px;
}/*# sourceMappingURL=estilos.css.map */