diary cleanup

This commit is contained in:
chimchooree
2022-07-21 21:48:52 -05:00
parent 23c782b72c
commit 8958ccd730
13 changed files with 617 additions and 127 deletions
+2 -2
View File
@@ -16,7 +16,7 @@ footer{
overflow: hidden;
}
a, a:link, a:visited, a:hover, a:active, b {
a, a:link, a:visited, a:hover, a:active, b, p {
text-decoration: none;
background-color: transparent;
}
@@ -38,7 +38,7 @@ li {
padding-left: 2em;
background-color: transparent;
}
h2,img {
h2,h3,img,i {
background-color: transparent;
}
+103 -118
View File
@@ -1,25 +1,17 @@
.content-grid {
grid-area: 3 / 2 / 4 / 3;
display: grid;
grid-template-columns: 2fr 1fr;
grid-template-rows: 40px auto 40px;
grid-column-gap: 0px;
grid-row-gap: 0px;
grid-area: 3 / 1 / 4 / 4;
max-width: MAX(50em, 50%);
display: grid;
grid-template-columns: 2fr 1fr;
grid-template-rows: 40px auto 40px;
grid-column-gap: 0px;
grid-row-gap: 0px;
margin: auto;
}
.dir-row {
grid-area: 1 / 1 / 2 / 3;
background-color: #080410;
color: #F9B3D7;
}
.diary-dir {
background-color: #080410;
font-size: 23px;
padding: 0px;
margin: 0px;
font-size: 1.5em;
color: #AAA39D;
font-weight: bold;
text-shadow:
@@ -47,24 +39,25 @@
}
.diary-dir.top {
grid-area: 1 / 1 / 2 / 3;
padding-top: 3px;
padding-top: 0em;
margin: auto;
}
.diary-dir-left {
display: inline-block;
vertical-align: middle;
}
.diary-dir-numbers {
height: 29px;
height: 0em;
display: inline-block;
white-space: nowrap;
}
.diary-dir-number {
background-color: #404664;
background-color: #7f2c28;
display: inline-block;
white-space: nowrap;
border-radius: 25px;
padding-left: 4px;
padding-right: 4px;
border-radius: .3em;
padding-left: .3em;
padding-right: .3em;
}
.diary-dir-right {
display: inline-block;
@@ -77,77 +70,79 @@
.snippet {
margin-top: 0px;
margin-bottom: 50px;
margin-bottom: 4em;
margin-right: 2em;
}
.snippet-title {
background-image: url(../img/dia/diaryheader.png);
background-size: 100%;
height: 40px;
padding: 10px;
font-size: 10px;
background-color: #585c88;
border-top-left-radius: .3em;
border-top-right-radius: .3em;
height: auto;
padding: .5em;
font-size: 1em;
}
.snippet-title a {
color: #E3E0DE;
background-color: transparent;
font-weight: bold;
text-shadow:
-1px -1px 1px #324832,
0 -1px 1px #324832,
2px -1px 1px #324832,
2px 0 1px #324832,
2px 2px 1px #324832,
0 2px 1px #324832,
-1px 2px 1px #324832,
-1px 0 1px #324832;
-1px -1px 1px #182448,
0 -1px 1px #182448,
2px -1px 1px #182448,
2px 0 1px #182448,
2px 2px 1px #182448,
0 2px 1px #182448,
-1px 2px 1px #182448,
-1px 0 1px #182448;
}
.snippet-title a:hover {
color: #ecd5d2;
font-weight: bold;
text-shadow:
-1px -1px 1px #324832,
0 -1px 1px #324832,
2px -1px 1px #324832,
2px 0 1px #324832,
2px 2px 1px #324832,
0 2px 1px #324832,
-1px 2px 1px #324832,
-1px 0 1px #324832;
-1px -1px 1px #182448,
0 -1px 1px #182448,
2px -1px 1px #182448,
2px 0 1px #182448,
2px 2px 1px #182448,
0 2px 1px #182448,
-1px 2px 1px #182448,
-1px 0 1px #182448;
}
.snippet-content {
background-color: #ecd5d2;
background-color: #C0AAC0;
color: #080410;
padding: 10px;
font-size: 15px;
padding: .3em;
font-size: 1em;
}
.date-line {
background-color: #ecd5d2;
background-color: #585c88;
color: #080410;
padding: 5px;
padding-left: 15px;
font-size: 15px;
padding: .5em;
padding-left: 2em;
font-size: .9em;
text-align: left;
}
.snippet-tags {
background-color: #ecd5d2;
padding: 10px;
font-size: 15px;
background-color: #585c88;
padding: .3em;
font-size: 1em;
}
.snippet-tag {
background-color: #b9b4af;
border-radius: 25px;
padding: 3px;
padding-left: 4px;
padding-right: 4px;
color: black;
font-size: 15px;
background-color: #8c92cc;
border-radius: .3em;
padding: .3em;
font-size: 1em;
font-weight: bold;
display: inline-block;
}
.snippet-tag a {
color: #182448;
}
.social-line {
background-color: #404664;
padding-top: 5px;
padding-left: 15px;
padding: .3em;
display: none;
}
.social-line a {
@@ -155,14 +150,15 @@
font-weight: bold;
}
.snippet-link {
margin-top: -35px;
margin-top: -3em;
margin-right: -1.5em;
font-size: 1em;
float: right;
font-size: 15px;
background-color: transparent;
}
.snippet-bottom {
background-image: url(../img/dia/diarybottom.png);
background-size: 100%;
height: 25px;
background-color: #585c88;
height: 1em;
}
.sidebar {
@@ -176,86 +172,75 @@
padding-left: 7px;
}
.sidebar a:link {
color: #213021;
color: ;
}
.sidebar a:hover {
color: #486438;
color: ;
}
.sidebar a:visited {
color: #213021;
color: ;
}
.sidebar a:active {
color: #945634;
color: ;
}
.about-box {
grid-area: 1 / 1 / 2 / 2;
border-radius: 25px;
background-color: #95939F;
color: #111718;
background-color: #886488;
text-align: center;
margin: 15px;
padding: 5px;
margin-top: 0px;
padding-bottom: 15px;
border-radius: 1em;
margin: 1em;
padding: .3em;
margin-top: 0em;
padding-bottom: 1em;
}
.twitter-box {
grid-area: 2 / 1 / 3 / 2;
border-radius: 25px;
background-color: #95939F;
color: #111718;
background-color: #886488;
text-align: center;
margin: 15px;
padding: 5px;
padding-bottom: 15px;
border-radius: 1em;
margin: 1em;
padding: .3em;
margin-top: 0em;
padding-bottom: 1em;
}
.latest {
grid-area: 3 / 1 / 4 / 2;
border-radius: 25px;
background-color: #95939F;
color: #111718;
background-color: #886488;
text-align: center;
list-style-position: inside;
margin: 15px;
padding: 5px;
border-radius: 1em;
margin: 1em;
padding: .3em;
margin-top: 0em;
padding-bottom: 1em;
}
.latest-text {
text-align: left;
list-style-position: inside;
padding: 5px;
background-color: #95939F;
padding: 0em;
background-color: #886488;
}
.wordcloud {
grid-area: 4 / 1 / 5 / 2;
border-radius: 25px;
background-color: #95939F;
color: #111718;
background-color: #886488;
text-align: center;
margin: 15px;
padding: 5px;
padding-bottom: 15px;
border-radius: 1em;
margin: 1em;
padding: .3em;
margin-top: 0em;
padding-bottom: 1em;
}
.disclosure {
grid-area: 5 / 1 / 6 / 2;
border-radius: 25px;
background-color: #95939F;
color: #111718;
background-color: #886488;
text-align: center;
margin: 15px;
padding: 5px;
padding-bottom: 15px;
border-radius: 1em;
margin: 1em;
padding: .3em;
margin-top: 0em;
padding-bottom: 1em;
}
.diary-dir.bottom {
grid-area: 3 / 1 / 4 / 3;
margin: auto;
}
.footer-content {
background-color: #080410;
color: #ecd5d2;
padding-top: 5px;
padding-right: 25px;
box-shadow: 0 100vh 0 100vh #581845;
text-align: right;
overflow: hidden;
}
+226
View File
@@ -0,0 +1,226 @@
.content-grid {
grid-area: 3 / 1 / 4 / 4;
max-width: MAX(50em, 50%);
display: grid;
grid-template-columns: 2fr 1fr;
grid-template-rows: 40px auto 40px;
grid-column-gap: 0px;
grid-row-gap: 0px;
margin: auto;
}
.diary-entry {
grid-area: 3 / 1 / 4 / 4;
margin-top: 40px;
margin-bottom: 30px;
word-wrap: break-word;
}
.diary-title {
background-color: #486438;
border-top-left-radius: 25px;
border-top-right-radius: 25px;
color: #e6e8ef;
padding: 10px;
padding-top: 55px;
padding-bottom: 25px;
font-size: 25px;
text-align: center;
font-weight: bold;
text-shadow:
-1px -1px 1px #324832,
0 -1px 1px #324832,
2px -1px 1px #324832,
2px 0 1px #324832,
2px 2px 1px #324832,
0 2px 1px #324832,
-1px 2px 1px #324832,
-1px 0 1px #324832;
}
.date-line {
padding: 10px;
background-color: #1c2628;
color: #aaa39d;
text-align: center;
}
.diary-content {
background-color: #ecd5d2;
color: #080410;
text-indent: 50px;
padding: 15px;
padding-top: 25px;
}
.diary-content img {
display: block;
margin-top: 25px;
margin-bottom: 0px;
margin-left: 0px;
max-width: 500px;
}
.diary-content h2 {
margin-top: 25px;
margin-bottom: 15px;
text-indent: 0px;
}
.diary-content h3 {
margin-top: 25px;
margin-bottom: 0px;
text-indent: 0px;
}
.diary-content h4 {
margin-top: 25px;
margin-bottom: 0px;
text-indent: 0px;
}
.diary-tags {
background-color: #1c2628;
padding: 10px;
font-size: 15px;
}
.diary-tag {
background-color: #b9b4af;
border-radius: 25px;
padding: 3px;
padding-left: 4px;
padding-right: 4px;
color: #1c2628;
font-size: 15px;
font-weight: bold;
display: inline-block;
}
.share-links {
background-color: #1c2628;
color: #aaa39d;
padding-top: 25px;
padding-bottom: 25px;
text-align: center;
}
.sidebar {
grid-area: 3 / 3 / 5 / 4;
display: grid;
grid-template-columns: auto;
grid-template-rows: repeat(4, auto);
grid-column-gap: 0px;
grid-row-gap: 0px;
align-content: start;
padding-left: 7px;
margin-top: 40px;
}
.sidebar a:link {
color: #213021;
}
.sidebar a:hover {
color: #486438;
}
.sidebar a:visited {
color: #213021;
}
.sidebar a:active {
color: #945634;
}
.about-box {
border-radius: 25px;
background-color: #95939F;
color: #111718;
text-align: center;
margin: 15px;
padding: 5px;
margin-top: 0px;
padding-bottom: 15px;
}
.twitter-box {
grid-area: 2 / 1 / 3 / 2;
border-radius: 25px;
background-color: #95939F;
color: #111718;
text-align: center;
margin: 15px;
padding: 5px;
padding-bottom: 15px;
}
.latest {
grid-area: 3 / 1 / 4 / 2;
border-radius: 25px;
background-color: #95939F;
color: #111718;
text-align: center;
list-style-position: inside;
margin: 15px;
padding: 5px;
}
.latest-text {
text-align: left;
list-style-position: inside;
padding: 5px;
}
.disclosure {
grid-area: 4 / 1 / 5 / 2;
border-radius: 25px;
background-color: #95939F;
color: #111718;
text-align: center;
margin: 15px;
padding: 5px;
padding-bottom: 15px;
}
.recommend {
grid-area: 4 / 2 / 5 / 3;
background-color: #080410;
color: #F9B3D7;
display: grid;
grid-template-columns: auto auto auto;
grid-template-rows: auto auto;
grid-column-gap: 0px;
grid-row-gap: 0px;
padding: 5px;
}
.more {
grid-area: 1 / 1 / 2 / 4;
background-color: #486438;
border-radius: 25px;
padding: 5px;
text-align: center;
color: #080410;
}
.rec-box { grid-area: 2 / 2 / 3 / 3; }
.snip {
width: 150px;
float: left;
margin: 30px;
background-color: #95939f;
border-radius: 25px;
padding: 20px;
text-align: center;
font-size: 16px;
}
.snip a {
color: #080410;
}
.snip a:hover {
color: #404664;
}
.snip a:visited {
color: #080410;
}
.snip a:active {
color: #404664;
}
.footer-row {
grid-area: 5 / 1 / 6 / 5;
background-color: #080410;
}
.footer-content {
background-color: #080410;
color: #ecd5d2;
padding-top: 5px;
padding-right: 25px;
box-shadow: 0 100vh 0 100vh #581845;
text-align: right;
overflow: hidden;
}
+3
View File
@@ -43,3 +43,6 @@
margin-left: auto;
margin-right: auto;
}
.latest-grid ul {
margin-top: 1.5em;
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

+259
View File
@@ -0,0 +1,259 @@
JASC-PAL
0100
256
248 16 224
40 28 32
88 92 136
136 100 136
40 40 40
4 2 4
248 176 208
176 108 112
224 152 160
248 172 160
24 36 72
236 170 196
36 58 108
48 52 64
112 140 208
208 172 168
184 172 208
132 118 172
128 44 40
140 146 204
16 20 56
208 108 64
96 104 160
212 176 208
40 52 104
80 88 136
236 122 84
204 92 40
0 0 0
24 10 4
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0
0 0 0