More Styling

This commit is contained in:
asonix 2020-03-25 23:31:49 -05:00
parent 6a1e822096
commit 9c7c98a709

View file

@ -1,5 +1,6 @@
body { body {
background-color: #f5f5f5; background-color: #333;
color: #f5f5f5;
font-family: sans-serif; font-family: sans-serif;
margin: 0; margin: 0;
position: relative; position: relative;
@ -19,8 +20,6 @@ body * {
} }
header { header {
background-color: #333;
color: #f5f5f5;
.header-text { .header-text {
max-width: 700px; max-width: 700px;
@ -45,6 +44,7 @@ header {
section { section {
background-color: #fff; background-color: #fff;
color: #333;
border: 1px solid #e5e5e5; border: 1px solid #e5e5e5;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.1); box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
border-radius: 3px; border-radius: 3px;
@ -64,10 +64,11 @@ section {
.info { .info {
border-bottom: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5;
padding-bottom: 36px;
} }
li { li {
padding-top: 24px; padding-top: 36px;
} }
.padded { .padded {
@ -77,6 +78,15 @@ section {
.joining { .joining {
padding: 24px; padding: 24px;
} }
a {
&,
&:focus,
&:hover,
&:active {
color: #c92a60;
}
}
} }
pre { pre {
@ -105,7 +115,7 @@ a {
&:focus, &:focus,
&:hover, &:hover,
&:active { &:active {
color: #ea7fbc; color: #f9a6c2;
} }
} }
@ -135,7 +145,8 @@ footer {
background-color: #f5f5f5; background-color: #f5f5f5;
border-top: 1px solid #e5e5e5; border-top: 1px solid #e5e5e5;
border-bottom: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5;
padding: 32px; padding: 24px;
padding-bottom: 36px;
.instance-description { .instance-description {
margin: 0; margin: 0;
@ -192,5 +203,6 @@ footer {
section { section {
border-left: none; border-left: none;
border-right: none; border-right: none;
border-radius: 0;
} }
} }