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 | /* Custom styles for the blog
-------------------------------------------------- */
.content p{
text-align: justify;
}
blockquote{
border-left: none;
background: transparent url(../img/blog/pen.png) no-repeat left top;
background-size: 64px 64px;
margin: 10px 10px;
padding: 5px 0px 0px 70px;
font-style: italic;
text-align:justify;
min-height: 70px;
}
blockquote.twitter-tweet{
background: transparent url(../img/blog/logo_twitter.png) no-repeat left top;
background-size: 64px 46px;
}
blockquote.twitter-tweet p{
margin: 10px 10px;
}
.excerpt {
background: transparent url(../img/blog/book_bg.jpg) no-repeat left top;
margin: 10px 0px;
padding: 20px 25px;
font-style: italic;
color: #555555;
text-align:justify;
min-height: 200px;
}
.recommendation {
background: transparent url(../img/blog/up_hand.png) no-repeat left top;
background-size: 64px 64px;
margin: 10px 10px;
padding: 5px 0px 0px 70px;
font-style: italic;
text-align:justify;
min-height: 70px;
}
.image {
margin-bottom: 20px;
padding-bottom: 0;
}
.image img {
position: inherit;
}
.image.central {
padding-bottom: 0;
}
.image.central img {
margin: auto;
}
.image.lateral {
max-width:40%;
margin: 0 1em;
float:right;
}
.image.lateral img {
margin-bottom: 10px;
}
.vertical {
text-align: center;
max-width: 50%;
margin: auto;
}
.spacious li {
margin: 0 0 1rem 0;
}
.caption {
font-size: 80%;
text-align: center;
color: #646464;
}
figcaption {
font-size: 80%;
text-align: center;
color: #646464;
}
article.post h2,
article.post h3,
article.post h4 {
color: #646464;
}
#socnet-share {
display: none !important;
}
.slider-container {
display: flex;
overflow-x: scroll;
scroll-snap-type: x mandatory;
margin: 0 -1em
}
.slider-container div {
flex: 0 0 100%;
width: 100%;
object-fit: cover;
scroll-snap-align: center;
}
.slider-container .image {
margin: 0 0 10px 0;
}
|