-
Notifications
You must be signed in to change notification settings - Fork 4
/
facebook_posts.scss
68 lines (57 loc) · 1.22 KB
/
facebook_posts.scss
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
// ----------------------------------------------------------------------------
// Sass declarations
// ----------------------------------------------------------------------------
$background-color: #FFF;
$foreground-color: #303030;
$title-color: #000000;
$moreinfo-color: #000000;
// ----------------------------------------------------------------------------
// Widget-comment styles
// ----------------------------------------------------------------------------
.widget-facebook-posts {
padding: 4px;
height: 100%;
width: 100%;
background-color: $background-color;
color: $foreground-color;
h3 {
color: $foreground-color;
}
.title {
color: $title-color;
margin-bottom: 15px;
margin-top: 0;
}
.name {
padding-left: 5px;
}
.comment-container {
display: none;
}
.comment {
font-size: 0.9em;
}
.avatar {
max-height: 20%;
opacity: 1;
z-index: 100;
}
.page_info {
max-height: 30px;
margin-left: 1%;
margin-right: 1%;
margin-bottom: 3%;
}
.more-info {
color: $moreinfo-color;
}
img.background {
width: auto;
height: 60%;
position: absolute;
left: 10px;
top: 0px;
opacity: 0.2;
z-index: 0;
}
}