about summary refs log tree commit diff stats
path: root/app/assets/stylesheets/main
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/main')
-rw-r--r--app/assets/stylesheets/main/entries.scss105
-rw-r--r--app/assets/stylesheets/main/records.scss4
2 files changed, 73 insertions, 36 deletions
diff --git a/app/assets/stylesheets/main/entries.scss b/app/assets/stylesheets/main/entries.scss index bd0b5ba..b2a07c5 100644 --- a/app/assets/stylesheets/main/entries.scss +++ b/app/assets/stylesheets/main/entries.scss
@@ -26,54 +26,87 @@
26 margin-bottom: 0; 26 margin-bottom: 0;
27 font-weight: normal; 27 font-weight: normal;
28 } 28 }
29}
29 30
30 #blog-content { 31#stream-post {
31 hyphens: auto; 32 h2 {
32 word-wrap: break-word; 33 background-color: #98FB98;
34 display: block;
35 font-size: 20px;
33 font-family: 'Roboto', sans-serif; 36 font-family: 'Roboto', sans-serif;
34 text-align: justify; 37 padding: 0.5em 20px;
38 border-top: 1px solid #7BCC70;
39 border-bottom: 1px solid #7BCC70;
40 }
35 41
36 a { 42 #stream-intro {
37 text-decoration: none; 43 font-size: 16px;
38 font-weight: bold; 44 margin: 0 20px;
45 }
39 46
40 &, &:visited { 47 .stream-update {
41 color: #ee2c2c; 48 font-size: 16px;
42 } 49 padding: 0 20px;
50 border-top: 1px solid #DEDEDE;
43 51
44 &:hover { 52 .update-posted {
45 text-decoration: underline; 53 display: block;
46 color: #9ea1ad; 54 font-style: italic;
47 } 55 text-align: right;
56 color: #989898;
57 font-size: 14px;
58 margin-top: .5em;
48 } 59 }
60 }
61}
62
63.entry-content {
64 hyphens: auto;
65 word-wrap: break-word;
66 text-align: justify;
67 font-family: 'Roboto', sans-serif;
68
69 a {
70 text-decoration: none;
71 font-weight: bold;
49 72
50 li { 73 &, &:visited {
51 & + li { 74 color: #ee2c2c;
52 margin-top: 1em;
53 }
54 } 75 }
55 76
56 img { 77 &:hover {
57 max-width: 100%; 78 text-decoration: underline;
58 box-sizing: border-box; 79 color: #9ea1ad;
59 } 80 }
81 }
60 82
61 figure { 83 li {
62 background-color: #eee; 84 & + li {
85 margin-top: 1em;
86 }
87 }
88
89 img {
90 max-width: 100%;
91 box-sizing: border-box;
92 }
93
94 figure {
95 background-color: #eee;
96 border: 1px solid #bbb;
97 padding: 0.25em 0.25em 0 0.25em;
98 font-size: 0.75em;
99 line-height: 24px;
100
101 img {
102 display: block;
63 border: 1px solid #bbb; 103 border: 1px solid #bbb;
64 padding: 0.25em 0.25em 0 0.25em; 104 }
65 font-size: 0.75em; 105
66 106 figcaption {
67 img { 107 font-style: italic;
68 display: block; 108 text-align: center;
69 border: 1px solid #bbb; 109 margin: 0.25em;
70 }
71
72 figcaption {
73 font-style: italic;
74 text-align: center;
75 margin: 0.25em;
76 }
77 } 110 }
78 } 111 }
79} 112}
diff --git a/app/assets/stylesheets/main/records.scss b/app/assets/stylesheets/main/records.scss index dd4eac1..f57dded 100644 --- a/app/assets/stylesheets/main/records.scss +++ b/app/assets/stylesheets/main/records.scss
@@ -52,6 +52,10 @@
52 &.entry-type-blog { 52 &.entry-type-blog {
53 background-color: #90fefb; 53 background-color: #90fefb;
54 } 54 }
55
56 &.entry-type-stream, &.entry-type-update {
57 background-color: #98FB98;
58 }
55 } 59 }
56 60
57 & + li { 61 & + li {