-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
140 lines (139 loc) · 2.88 KB
/
styles.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
li {
display: inline;
}
/* Cambia el color al pasar el mouse */
li a:hover {
background-color: rgb(243, 219, 219);
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #B2B2BE;
}
.titulo {
font-size: 24px;
color: black;
float: none;
margin: 0 auto;
}
header {
background-color: #F17732;
padding: 20px;
text-align: center;
}
nav {
background-color: #B2B2BE;
padding-left: 20px;
padding-right: 20px;
padding-top: 40px;
padding-bottom: 20px;
}
nav ul {
display: flex;
justify-content: space-between;
}
nav a {
color: white;
font-weight: bolder;
text-transform: uppercase;
text-decoration: none;
}
.gallery img {
width: 20%; /* porcentaje del ancho de la imagen */
padding: 5px; /* espaciado entre las imágenes */
box-sizing: border-box; /* para que el padding no afecte al ancho de la imagen */
}
/** Quiero crear un texto tipo artículo de 2 secciones en una columna, una que sea el artículo principal y otra que sea el aside */
article {
width: 70%;
float: left;
padding-left: 40px;
padding-top: 5px;
padding-bottom: 5px;
padding-right: 50px;
background-color: #B2B2BE;
margin-left: 20px;
margin-top: 20px;
margin-bottom: 20px;
}
section {
border-top: 2px solid black;
text-align: justify;
inset-inline-start: 1px solid black;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
aside {
width: 17%;
float: right;
padding-left: 20px;
padding-right: 20px;
background-color: #B2B2BE;
margin-right: 20px;
margin-top: 150px;
}
h1 {
font-weight: bold;
font-size: large;
color:#292927;
margin: 1px;
border: 5px;
border-width: 5px;
border-color: #E15C52(255, 197, 127);
padding: 2px
}
h2 {
font-weight: bold;
font-size: medium;
color:#292927;
}
h3 {
font-weight:lighter;
font-size: medium;
color:#292927;
font-style: italic;
}
h4{
font-weight:bold;
font-size: smaller;
color:#292927;
font-style: italic;
text-align: right;
}
p {
color: grey;
width: fit-content;
font-size: small;
font-weight: lighter;
}
body {
background-color: #F8F8F8;
}
.clear {
clear: both;
}
footer {
background-color:#F17732;
color: black;
text-align: left;
font-size: small;
font-style: italic;
font-weight: bold;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
padding: 40px;
}
.pie {
font-size: 17px;
color: black;
margin: 0 auto;
}
button #hola {
width: 150px;
height: 50px;
border: 2px #F17732;
color: black;
text-align: center;
font-size: 20px;
float: left;
}