forked from Phlow/feeling-responsive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathatom.scss
More file actions
94 lines (82 loc) · 1.46 KB
/
Copy pathatom.scss
File metadata and controls
94 lines (82 loc) · 1.46 KB
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
---
sitemap:
exclude: true
---
@charset "utf-8";
@import "functions.scss";
$include-html-classes: false;
@import "01_settings_colors.scss";
@import "02_settings_typography.scss";
@import "03_settings_mixins_media_queries.scss";
@import "04_settings_global.scss";
* {
display: block;
}
:root {
margin: 3em;
background: $body-bg;
color: $body-font-color;
font-family: $body-font-family;
}
feed {
> title {
text-align: center;
color: lighten($primary-color, 25%);
font-family: $header-font-family;
font-size: $font-size-h1 * 1.5;
font-weight: bolder;
&::before {
content: 'Atom Feed for ';
font-weight: initial;
}
&::after {
content: "This Atom feed is meant to be used by RSS reader applications and websites.";
display: block;
padding: 1em;
background-color: $alert-color;
color: #fff;
font-family: initial;
font-size: initial;
letter-spacing: initial;
}
}
> id,
> updated,
> subtitle,
> author,
> link,
> generator {
display: none;
}
}
entry {
padding: 1em 0;
border-bottom: 1px solid invert($body-bg);
&:last-child {
border-bottom: none;
}
> title {
color: $secondary-color;
font-family: $header-font-family;
font-size: $font-size-h1;
margin-bottom: 0.5em;
}
> link::after {
content: attr(href);
color: $primary-color;
}
> updated {
color: $grey-5;
font-size: small;
}
> summary {
margin-top: 1em;
}
> id,
> author,
> category,
> published,
> content {
display: none;
}
}