-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvideojuegos.css
141 lines (123 loc) · 2.25 KB
/
videojuegos.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
134
135
136
137
138
139
140
141
body{
font-family: Verdana;
background-color: #e4f4fd;
color: #554488;
margin-right: 2%;
margin-left: 2%;
text-align: justify;
}
.listGenero{
display: inline-block;
}
hr {
background-color: #abdefa;
height: 5px;
border:none;
}
.encabezadoPrincipal{
font-weight: bolder;
color: #554488;
text-align: center;
/*background-image: url('https://static.wikia.nocookie.net/minecraftpe/images/6/64/Pico_de_hierro.png/revision/latest/scale-to-width-down/160?cb=20200503224519&path-prefix=es');
background-position: center;
background-size: 40px 40px;
padding: 3%;
border: solid #554488 4px;
background-repeat: repeat;*/
font-size: XXX-large;
border-radius: 8px;
background-color: #abdefa;
-webkit-text-fill-color: white;
-webkit-text-stroke: 1px #554488;
}
.negrita{
font-weight: bolder;
padding: 0.3%;
}
#genero{
text-align: center;
}
#block{
display: inline-block;
}
.grupo{
padding-bottom: 1%;
}
.lista{
margin-bottom: 1%;
margin-left: 1%;
}
.item1 {
grid-area: header;
}
.item2 {
grid-area: main;
}
.item3 {
grid-area: right;
}
.grid-container {
display: grid;
grid-template-areas:
'header header'
'main right';
grid-gap: 10px;
padding: 10px;
}
.item4 {
grid-area: header;
}
.item5 {
grid-area: left;
}
.item6 {
grid-area: center;
}
.item7 {
grid-area: right;
}
.item8 {
grid-area: pito;
}
.item9 {
grid-area: left2;
}
.item10 {
grid-area: center2;
}
.item11 {
grid-area: right2;
}
.item12 {
grid-area: pito2;
}
.grid-container2 {
display: grid;
grid-template-areas:
'header header header header'
'left center right pito'
'left2 center2 right2 pito2';
grid-gap: 10px;
padding: 10px;
}
.encabezados{
/*border-top: 3px solid #3a34a6;*/
color: #554488;
/*border-bottom: 3px solid #56841b;*/
font-weight: bolder;
/*background:linear-gradient(#7f1496, #e92ba0);*/
/*text-shadow: -2px 2px 2px black;*/
background-color: #abdefa;
border-radius: 8px;
text-align: center;
padding: 4px;
}
input {
font-family: Verdana;
font-weight: bolder;
color: #554488;
font-size: 14px;
background-color: #e4f4fd;
border-color: #554488;
border-radius: 8px;
}