-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (75 loc) · 1.49 KB
/
style.css
File metadata and controls
113 lines (75 loc) · 1.49 KB
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
.barra{
display: flex;
background-color: rgb(255, 0, 64);
margin: 1em;
border-radius: 2em;
margin-bottom: 3em;
}
header nav a img{
width: 3em;
border-radius: 2em;
margin-top: 1em;
margin-left: 2em;
}
.lista ul li {
display: inline-block;
padding: 0.5em ;
font-size: medium;
margin: 0.5em;
margin-left: 1.7em;
}
.lista ul li a{
background-color: black;
color: rgb(0, 255, 0);
text-decoration: none;
padding: 0.5em 1em;
border-radius: 1em 0em ;
font-size: 1.07em;
}
.barra-busqueda{
margin-top: 2em;
margin-left: 9em;
border-radius: 2em;
border: solid rgb(17, 17, 17);
background-color: rgb(255, 255, 255);
margin-left: 6em;
}
.boton-buscar{
border-radius: 2em;
border: solid black;
cursor: pointer;
background-color: rgb(0, 0, 0);
color: blue;
}
.lista ul li a:hover{
box-shadow: 0 0 50px yellow ;
background-color: yellow;
}
.boton-buscar:hover{
box-shadow: 0 0 50px yellow ;
background-color: yellow;
}
.pie-pagina{
display: flex;
justify-content: center;
margin-top: 8em;
margin-bottom: 2em;
}
.pie-directo{
margin: 1em;
}
.imagen-pie{
border-radius: 2em;
width: 1.5em;
height: 1.5em;
margin-top: 0.5em;
justify-items: auto;
}
/* Estilos base para .barra */
.barra {
display: flex;
background-color: rgb(255, 0, 64);
margin: 1em;
border-radius: 2em;
margin-bottom: 3em;
}