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
|
/**
* @file
* Node Styling
*
* Style anything that isn't in the $content variable.
*/
/* line 11, ../../../sass/sass/nodes.scss */
.node {
/* Node wrapper */
}
/* line 13, ../../../sass/sass/nodes.scss */
.preview .node {
/* Preview of the content before submitting new or updated content */
/* background-color: #ffffea; */
/* Drupal core uses a #ffffea background */
}
/* line 17, ../../../sass/sass/nodes.scss */
.node .node-title {
/* Node title */
}
/* line 20, ../../../sass/sass/nodes.scss */
.node .user-picture {
/* The picture of the node author */
}
/* line 23, ../../../sass/sass/nodes.scss */
.node .submitted {
/* The "posted by" information */
}
/* line 26, ../../../sass/sass/nodes.scss */
.node .content {
/* Node's content wrapper */
}
/* line 29, ../../../sass/sass/nodes.scss */
.node ul.links {
/* Node links. See also the ul.links declaration in the pages.css. */
}
/* line 34, ../../../sass/sass/nodes.scss */
.node-promoted {
/* A node that has been promoted to the front page */
}
/* line 37, ../../../sass/sass/nodes.scss */
.node-sticky {
/* A sticky node (displayed before others in a list) */
}
/* line 40, ../../../sass/sass/nodes.scss */
.node-by-viewer {
/* A node created by the current user */
}
/* line 43, ../../../sass/sass/nodes.scss */
.node-teaser {
/* A node displayed as teaser */
}
/*
* All nodes are given a node-FOO class that describes the type of content that
* it is. If you create a new content type called "my-custom-type", it will
* receive a "node-my-custom-type" class.
*/
/* line 52, ../../../sass/sass/nodes.scss */
.node-page {
/* Page content node */
}
/* line 55, ../../../sass/sass/nodes.scss */
.node-article {
/* Article content node */
}
/* line 58, ../../../sass/sass/nodes.scss */
.node-unpublished {
/* Unpublished nodes */
/* background-color: #fff4f4; */
/* Drupal core uses a #fff4f4 background */
}
/* line 61, ../../../sass/sass/nodes.scss */
.node-unpublished p.unpublished {
/* The word "Unpublished" displayed underneath the content. */
height: 0;
overflow: visible;
color: #d8d8d8;
font-size: 75px;
line-height: 1;
font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
font-weight: bold;
text-transform: uppercase;
text-align: center;
word-wrap: break-word;
}
|