forked from fero1394/Grupo_6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpruebaestilos.css
125 lines (112 loc) · 2.22 KB
/
pruebaestilos.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
.container {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(7, 1fr);
grid-column-gap: 3rem;
grid-row-gap: 3rem;
}
.header {
position: relative;
background: #ff8000;
background: url(./img/headerEdit.png);
background-repeat: no-repeat;
background-position-x: 400px;
background-size: 100% 100%;
grid-column-gap: 3rem;
grid-column-start: 1;
grid-column-end: 3;
grid-row-start: 1;
grid-row-end: 1;
height: 600px;
width: 1900px;
}
.logo {
/*background: #43A047;*/
height: 500px;
width: 500px;
grid-column-start: 1;
grid-column-end: 2;
grid-row-start: 1;
grid-row-end: 2;
position: relative;
}
.img-navegacion {
height: 500px;
}
.Titulo {
/*background: #888;*/
grid-column-start: 2;
grid-column-end: 3;
grid-row-start: 2;
grid-row-end: 3;
width: 50%;
position: relative;
left: 500px;
right: 0px;
top: -300px;
bottom: 0px;
}
.Titulo h1 {
font-size: 60px;
font-family: Arial, Helvetica, sans-serif;
}
.Titulo h2 {
font-size: 60px;
font-family: Arial, Helvetica, sans-serif;
position: relative;
right: -100px;
}
.navegacion {
background: #1d4698;
grid-column-gap: 1px;
grid-column-start: 2;
grid-row-end: 1;
width: 60%;
position: relative;
left: 500px;
right: 0px;
top: -750px;
bottom: -800px;
}
.navegacion li {
float: right;
list-style: none;
padding: 40px;
}
.navegacion li a {
text-decoration: none;
border: 1px solid blue;
border-radius: 10px;
font-family: Arial, Helvetica, sans-serif;
z-index: 1;
}
.Articulo1 {
background: #1d4698;
grid-column-start: 1;
grid-row-end: 3;
grid-column-start: 1;
grid-column-end: 3;
grid-row-start: 3;
grid-row-end: 3;
}
.Articulo2 {
background: #4d73bf;
grid-column-start: 1;
grid-column-end: 3;
grid-row-start: 4;
grid-row-end: 4;
}
.secciones {
background: #373737;
grid-column-start: 1;
grid-column-end: 3;
grid-row-start: 5;
grid-row-end: 6;
}
.footer {
background: #373737;
grid-column-start: 1;
grid-column-end: 3;
grid-row-start: 7;
grid-row-end: 7;
}