-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
54 lines (43 loc) · 666 Bytes
/
styles.css
File metadata and controls
54 lines (43 loc) · 666 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
body{
background: #00ffaa;
font-family: Georgia, 'Times New Roman', Times, serif;
font-size: 15px;
margin: 0;
}
div{
box-sizing: border-box;
}
header{
background: rgb(240, 227, 227);
text-align: center;
padding: 5px;
}
header h1{
margin: 0;
}
.contenido{
width: 500px;
margin: 30px auto;
}
.post{
background:white;
margin: 50px 0;
border-radius: 4px;
overflow: hidden;
}
.post-header{
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
}
.post-header h2{
margin: 10px;
font-size: 18px;
}
.post-header span{
color: gray;
}
.post-body{
padding: 10px;
}