Revert "Minor styling tweaks: piccalil.li's modern CSS Reset swyx.io's 100 Bytes of CSS to look great everywhere"
This reverts commit a339ff93b1
.
main
parent
62c9327500
commit
5c98b8dbfb
|
@ -1,11 +1,9 @@
|
||||||
$font-stack: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell,
|
$font-stack: Helvetica, sans-serif;
|
||||||
Ubuntu, roboto, noto, arial, sans-serif;
|
|
||||||
|
|
||||||
$background: #ddd;
|
$background: #ddd;
|
||||||
$light-background: #e6e6e6;
|
$light-background: #e6e6e6;
|
||||||
$text-color: #111;
|
$text-color: #111;
|
||||||
$primary-color: #1d781d;
|
$primary-color: #1d781d;
|
||||||
$secondary-color: #781d78;
|
$secondary-color: #781D78;
|
||||||
$form-background-color: #ccc;
|
$form-background-color: #ccc;
|
||||||
$form-text-color: #333;
|
$form-text-color: #333;
|
||||||
$muted-color: #555; // solarized comment text
|
$muted-color: #555; // solarized comment text
|
||||||
|
@ -15,46 +13,6 @@ $code-highlight-background: #f0f0f0;
|
||||||
// Load custom theme
|
// Load custom theme
|
||||||
@import "theme.scss";
|
@import "theme.scss";
|
||||||
|
|
||||||
/* Box sizing rules */
|
|
||||||
*,
|
|
||||||
*::before,
|
|
||||||
*::after {
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Set core root defaults */
|
|
||||||
html:focus-within {
|
|
||||||
scroll-behavior: smooth;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Inherit fonts for inputs and buttons */
|
|
||||||
input,
|
|
||||||
button,
|
|
||||||
textarea,
|
|
||||||
select {
|
|
||||||
font: inherit;
|
|
||||||
}
|
|
||||||
|
|
||||||
html {
|
|
||||||
max-width: 90ch;
|
|
||||||
padding: 3em 1em;
|
|
||||||
margin: auto;
|
|
||||||
line-height: 1.75;
|
|
||||||
font-size: 1.25em;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
font-family: $font-stack;
|
|
||||||
background: $background;
|
|
||||||
color: $text-color;
|
|
||||||
display: flex;
|
|
||||||
min-height: 100vh;
|
|
||||||
flex-direction: column;
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.primary-color {
|
.primary-color {
|
||||||
color: $primary-color;
|
color: $primary-color;
|
||||||
}
|
}
|
||||||
|
@ -112,7 +70,7 @@ a {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
.sensitive-attachment-state:checked ~ .sensitive-attachment-box div {
|
.sensitive-attachment-state:checked ~ .sensitive-attachment-box div {
|
||||||
display: none;
|
display:none;
|
||||||
}
|
}
|
||||||
.sensitive-attachment-box {
|
.sensitive-attachment-box {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
@ -126,6 +84,7 @@ a {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
border-left: 3px solid $secondary-color;
|
border-left: 3px solid $secondary-color;
|
||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
|
@ -140,6 +99,23 @@ blockquote {
|
||||||
background: $light-background;
|
background: $light-background;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
body {
|
||||||
|
font-family: $font-stack;
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 32px;
|
||||||
|
background: $background;
|
||||||
|
color: $text-color;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
display: flex;
|
||||||
|
min-height: 100vh;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
|
||||||
dl {
|
dl {
|
||||||
display: flex;
|
display: flex;
|
||||||
dt {
|
dt {
|
||||||
|
@ -184,16 +160,13 @@ div.highlight {
|
||||||
padding: 0 20px;
|
padding: 0 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
code,
|
code, pre {
|
||||||
pre {
|
|
||||||
color: $secondary-color; // #cb4b16; // #268bd2; // #2aa198;
|
color: $secondary-color; // #cb4b16; // #268bd2; // #2aa198;
|
||||||
font-family: monospace;
|
font-family: monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form {
|
.form {
|
||||||
input,
|
input, select, textarea {
|
||||||
select,
|
|
||||||
textarea {
|
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
border: 0;
|
border: 0;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
|
@ -203,7 +176,7 @@ pre {
|
||||||
outline: 1px solid $secondary-color;
|
outline: 1px solid $secondary-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
input[type="submit"] {
|
input[type=submit] {
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
outline: none;
|
outline: none;
|
||||||
background: $primary-color;
|
background: $primary-color;
|
||||||
|
@ -244,6 +217,7 @@ a {
|
||||||
}
|
}
|
||||||
main {
|
main {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
max-width: 1000px;
|
||||||
margin: 30px auto;
|
margin: 30px auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -263,8 +237,8 @@ main {
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
font-size: 1em;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
max-width: 1000px;
|
||||||
margin: 20px auto;
|
margin: 20px auto;
|
||||||
color: $muted-color;
|
color: $muted-color;
|
||||||
p {
|
p {
|
||||||
|
@ -280,7 +254,7 @@ footer {
|
||||||
.actor-box {
|
.actor-box {
|
||||||
display: flex;
|
display: flex;
|
||||||
column-gap: 20px;
|
column-gap: 20px;
|
||||||
margin: 10px 0;
|
margin:10px 0;
|
||||||
.icon-box {
|
.icon-box {
|
||||||
flex: 0 0 50px;
|
flex: 0 0 50px;
|
||||||
}
|
}
|
||||||
|
@ -300,14 +274,12 @@ footer {
|
||||||
li {
|
li {
|
||||||
display: block;
|
display: block;
|
||||||
span {
|
span {
|
||||||
padding-right: 10px;
|
padding-right:10px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#notifications,
|
#notifications, #followers, #following {
|
||||||
#followers,
|
|
||||||
#following {
|
|
||||||
ul {
|
ul {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
@ -332,16 +304,14 @@ footer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.show-sensitive-btn,
|
.show-sensitive-btn, .show-more-btn, .label-btn {
|
||||||
.show-more-btn,
|
|
||||||
.label-btn {
|
|
||||||
@include admin-button;
|
@include admin-button;
|
||||||
padding: 10px 5px;
|
padding: 10px 5px;
|
||||||
margin: 20px 0;
|
margin: 20px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.show-hide-sensitive-btn {
|
.show-hide-sensitive-btn {
|
||||||
display: inline-block;
|
display:inline-block;
|
||||||
}
|
}
|
||||||
|
|
||||||
.no-margin-top {
|
.no-margin-top {
|
||||||
|
@ -365,13 +335,13 @@ ul.poll-items {
|
||||||
}
|
}
|
||||||
|
|
||||||
.poll-bar {
|
.poll-bar {
|
||||||
width: 100%;
|
width:100%;height:20px;
|
||||||
height: 20px;
|
|
||||||
line {
|
line {
|
||||||
stroke: $secondary-color;
|
stroke: $secondary-color;
|
||||||
stroke-width: 20px;
|
stroke-width: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -395,8 +365,7 @@ nav {
|
||||||
form {
|
form {
|
||||||
margin: 15px 0;
|
margin: 15px 0;
|
||||||
}
|
}
|
||||||
input[type="submit"],
|
input[type=submit], button {
|
||||||
button {
|
|
||||||
@include admin-button;
|
@include admin-button;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -409,6 +378,7 @@ nav.flexbox {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ul li {
|
ul li {
|
||||||
|
@ -421,8 +391,7 @@ nav.flexbox {
|
||||||
a:not(.label-btn) {
|
a:not(.label-btn) {
|
||||||
color: $primary-color;
|
color: $primary-color;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
&:hover,
|
&:hover, &:active {
|
||||||
&:active {
|
|
||||||
color: $secondary-color;
|
color: $secondary-color;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
@ -452,17 +421,14 @@ a.label-btn {
|
||||||
display: inline;
|
display: inline;
|
||||||
color: $muted-color;
|
color: $muted-color;
|
||||||
}
|
}
|
||||||
.e-content,
|
.e-content, .activity-og-meta {
|
||||||
.activity-og-meta {
|
|
||||||
a:hover {
|
a:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.activity-attachment {
|
.activity-attachment {
|
||||||
margin: 30px 0 20px 0;
|
margin: 30px 0 20px 0;
|
||||||
img,
|
img, audio, video {
|
||||||
audio,
|
|
||||||
video {
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 740px;
|
max-width: 740px;
|
||||||
}
|
}
|
||||||
|
@ -495,8 +461,8 @@ a.label-btn {
|
||||||
}
|
}
|
||||||
|
|
||||||
.actor-action {
|
.actor-action {
|
||||||
margin-top: 20px;
|
margin-top:20px;
|
||||||
margin-bottom: -20px;
|
margin-bottom:-20px;
|
||||||
padding: 0 20px;
|
padding: 0 20px;
|
||||||
span {
|
span {
|
||||||
color: $muted-color;
|
color: $muted-color;
|
||||||
|
@ -505,8 +471,7 @@ a.label-btn {
|
||||||
.actor-metadata {
|
.actor-metadata {
|
||||||
color: $muted-color;
|
color: $muted-color;
|
||||||
}
|
}
|
||||||
.emoji,
|
.emoji, .custom-emoji {
|
||||||
.custom-emoji {
|
|
||||||
max-width: 25px;
|
max-width: 25px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue