Remove unused CSS
This commit is contained in:
parent
23435cbe61
commit
70c6103e24
|
@ -1,51 +0,0 @@
|
|||
p {
|
||||
margin: 0.4rem 0;
|
||||
}
|
||||
|
||||
.pfp {
|
||||
border-radius: 100%;
|
||||
}
|
||||
|
||||
.post__media video,
|
||||
.post__media img {
|
||||
margin: 1em 0;
|
||||
max-width: 100%;
|
||||
max-height: 85vh;
|
||||
}
|
||||
|
||||
.post__media p {
|
||||
margin-left: 1rem;
|
||||
align-self: flex-start;
|
||||
}
|
||||
|
||||
.imageMeta__wrapper {
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
|
||||
.user {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
.tags {
|
||||
display: flex;
|
||||
gap: 10px;
|
||||
flex-flow: wrap;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
.tag {
|
||||
border-radius: 10px;
|
||||
padding: 7px;
|
||||
background-color: rgba(0, 0, 0, 0.15);
|
||||
background-blend-mode: multiply;
|
||||
min-width: 110px;
|
||||
}
|
||||
|
||||
.tag__display {
|
||||
font-weight: 700;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
}
|
|
@ -1,97 +0,0 @@
|
|||
h1, h2, h3 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #E0E0E0;
|
||||
font-weight: 600;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: #212121;
|
||||
color: white;
|
||||
font-size: 18px;
|
||||
font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Ubuntu, roboto, noto, arial, sans-serif;
|
||||
margin: 0 24vw;
|
||||
}
|
||||
|
||||
nav {
|
||||
margin: 0.75rem;
|
||||
}
|
||||
|
||||
.logo, .icon {
|
||||
filter: invert(1) hue-rotate(180deg);
|
||||
}
|
||||
|
||||
.text-center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.flex {
|
||||
display: flex;
|
||||
}
|
||||
.flex-center {
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
.flex-center-y {
|
||||
align-items: center;
|
||||
}
|
||||
.flex-col {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-2 {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.gap-2 {
|
||||
gap: 0.5rem;
|
||||
}
|
||||
.gap-4 {
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.posts {
|
||||
margin-top: 1em;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
||||
grid-auto-rows: 1fr;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.post {
|
||||
border-radius: 12px;
|
||||
background-color: #3b3b3b;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.posts img,
|
||||
.posts video:not(:fullscreen) {
|
||||
object-fit: cover;
|
||||
aspect-ratio: 1;
|
||||
}
|
||||
|
||||
.post__title {
|
||||
margin: 0 6px;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.pageSelector {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
footer {
|
||||
gap: 5rem;
|
||||
margin: 2em 0;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 812px) {
|
||||
body {
|
||||
margin: 0 !important;
|
||||
}
|
||||
}
|
|
@ -1,67 +0,0 @@
|
|||
.comment {
|
||||
gap: 0.5em;
|
||||
}
|
||||
|
||||
.comments {
|
||||
margin-top: 1em;
|
||||
gap: 0.25em;
|
||||
}
|
||||
|
||||
.replies {
|
||||
margin-left: 20px;
|
||||
border-left: 2px #424242 solid;
|
||||
padding-left: 8px;
|
||||
}
|
||||
|
||||
#comments__expandBtn {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.comments__expandBtn__label {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
text-decoration: none;
|
||||
color: #fff
|
||||
}
|
||||
|
||||
.comments__expandBtn__icon {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
#comments__expandBtn ~ .comments__expandBtn__label > span::after {
|
||||
content: "⌄";
|
||||
}
|
||||
|
||||
#comments__expandBtn:checked ~ .comments__expandBtn__label > span::after {
|
||||
content: "⌃";
|
||||
}
|
||||
|
||||
#comments__expandBtn:checked ~ .comments {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.comment__media {
|
||||
height: 10em;
|
||||
display: block;
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
|
||||
.comment__updatedDate {
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
.comment__user {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.comment__user__username {
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
}
|
|
@ -1,18 +0,0 @@
|
|||
h2, p {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h2 {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
code {
|
||||
display: block;
|
||||
padding: 0.75em;
|
||||
background-color: #383838;
|
||||
width: 90%;
|
||||
margin: 0.75em 0;
|
||||
word-wrap: break-word;
|
||||
border-radius: 4px;
|
||||
font-family: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
|
||||
}
|
|
@ -1,16 +0,0 @@
|
|||
h1, h2, h3 {
|
||||
margin: 0.4em 0;
|
||||
}
|
||||
|
||||
code {
|
||||
padding: 0.15rem;
|
||||
font-size: 0.95em;
|
||||
background-color: #383838;
|
||||
border-radius: 4px;
|
||||
font-family: Menlo, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
|
||||
}
|
||||
|
||||
summary {
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
}
|
|
@ -1,2 +0,0 @@
|
|||
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
||||
html{line-height:1.2;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}
|
|
@ -1,44 +0,0 @@
|
|||
p {
|
||||
margin: 1em 0
|
||||
}
|
||||
|
||||
h1, h2, h3 {
|
||||
margin: 0.4em 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: outside none none;
|
||||
padding: 0;
|
||||
margin: 0.25em;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.largeIcon {
|
||||
height: 36px;
|
||||
}
|
||||
|
||||
.badge {
|
||||
margin: 0 10vw
|
||||
}
|
||||
|
||||
.badge div {
|
||||
background-color: #3b3b3b;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.badge h2 {
|
||||
font-size: 1.35rem;
|
||||
}
|
||||
|
||||
.badge h2,
|
||||
.badge p,
|
||||
.largeIcon {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.privacyDetails summary {
|
||||
cursor: pointer;
|
||||
user-select: none;
|
||||
color: #2b95f2;
|
||||
font-weight: 700;
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
body {
|
||||
margin: 0 12vw;
|
||||
}
|
||||
|
||||
.tagMeta {
|
||||
padding: 2em;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
a {
|
||||
font-weight: 400;
|
||||
color: #fff;
|
||||
}
|
|
@ -1,12 +0,0 @@
|
|||
body {
|
||||
margin: 0 12vw;
|
||||
}
|
||||
|
||||
.userMeta {
|
||||
padding: 2em;
|
||||
border-radius: 12px;
|
||||
}
|
||||
|
||||
.pfp {
|
||||
border-radius: 100%;
|
||||
}
|
Loading…
Reference in New Issue