-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.css
More file actions
57 lines (56 loc) · 925 Bytes
/
Copy pathblog.css
File metadata and controls
57 lines (56 loc) · 925 Bytes
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
/*Este es el CSS del blog*/
html {
font-family: 'Montserrat', sans-serif;
}
body {
margin: 0;
background-color: #efefef;
}
header {
background-color: #364552;
color: white;
padding: 3rem;
}
header h1{
font-size: 4rem;
text-align: center;
}
.container {
width: 400px;
margin: 0 auto;
}
section article {
transition: all 0.3s;
background-color: #fff;
margin: 1rem 0;
border-radius: 0.5rem;
padding: 0.25rem 0;
cursor: pointer;
text-align: justify;
}
.subconcienteimagen {
width: 400px;
height: auto;
}
.ojo {
width: 380px;
height: auto;
}
section area h2, section article p {
margin: 1rem;
}
section article:hover {
box-shadow: 0 0.1rem 0.4rem rbga (0,0,0,0.3);
}
footer {
background-color: #222;
padding: 6rem;
color: #fff;
}
footer section {
float: right;
}
footer a {
color: white;
text-decoration: none;
}