-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaside_style.css
More file actions
70 lines (60 loc) · 1.23 KB
/
aside_style.css
File metadata and controls
70 lines (60 loc) · 1.23 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
/*ASIDE*/
#aside {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
width: 100%;
box-sizing: border-box;
}
.aside_section {
display: flex;
flex-direction: column;
align-items: center;
border: 1px solid #7c7a7a;
padding: 10px;
}
.aside_section_titulo {
font-weight: bold;
}
/*PARA LA IMAGEN*/
#aside_pt2 {
margin-top: 10px;
}
#imagen_pt2, #imagen_pt1 {
width: 400px;
height: 220px;
}
/*PARA EL ENLACE QUE HACE DE BOTÓN*/
.aside_section_link {
margin-top: 10px;
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
text-emphasis: none;
color: #E04545;
border: 1px solid #E04545;
padding: 5px;
width: 390px;
transition: color 0.3s ease-in, background-color 0.3s ease-in;
}
.aside_section_link:hover, .aside_section_link:focus {
color: #FFF;
background-color: #E04545;
}
@media screen and (max-width: 450px) {
#aside {
display: flex;
justify-self: center;
width: 50%;
margin: 10px 50px;
}
#imagen_pt2, #imagen_pt1 {
width: 195px;
height: 130px;
}
.aside_section_link {
width: 185px;
}
}