summaryrefslogtreecommitdiff
path: root/static/styles.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/styles.css')
-rw-r--r--static/styles.css180
1 files changed, 180 insertions, 0 deletions
diff --git a/static/styles.css b/static/styles.css
new file mode 100644
index 0000000..23a689d
--- /dev/null
+++ b/static/styles.css
@@ -0,0 +1,180 @@
+@font-face {
+ font-family: Charter;
+ src: url(charter_regular.woff2) format('woff2-variations');
+ font-style: normal;
+}
+
+@font-face {
+ font-family: Charter;
+ src: url(charter_italic.woff2) format('woff2-variations');
+ font-style: italic;
+}
+
+@font-face {
+ font-family: Charter;
+ src: url(charter_bold.woff2) format('woff2-variations');
+ font-weight: bold;
+}
+
+@font-face {
+ font-family: Charter;
+ src: url(charter_bold_italic.woff2) format('woff2-variations');
+ font-style: italic;
+ font-weight: bold;
+}
+
+@font-face {
+ font-family: FiraMono;
+ src: url(FiraMono-Regular.ttf);
+ font-style: normal;
+}
+
+body {
+ background: #fffaef;
+ color: DarkSlateGrey;
+ font-family: Charter, serif;
+ font-size: 16px;
+ text-align: center;
+ line-height: 1.2;
+ margin-left: 0;
+ margin-right: 0;
+}
+
+.container {
+ background: #fffaef;
+ text-align: left;
+ padding: 1em;
+ padding-bottom: 1.4em;
+ min-width: 40%;
+ padding-top: .7em;
+}
+
+.center-container {
+ text-align: center;
+ width: 80%;
+ max-width: 500px;
+ margin: 0 auto;
+}
+
+.center-container .crumbs {
+ padding-left: 0;
+}
+
+@media only screen and (min-width: 700px) {
+ .container {
+ border: 1px DarkSlateGrey dotted;
+ border-radius: 4px;
+ box-shadow: 4px 4px 0px rgba(0, 0, 0, .5);
+ padding: 2em;
+ padding-top: 1.5em;
+ max-width: 40em;
+ margin: 0 auto;
+ margin-top: 6%;
+ margin-bottom: 6%;
+ }
+ body {
+ background: #fbf7f0;
+ }
+}
+
+@media only screen and (min-height: 700px) {
+ body {
+ margin-top: 0;
+ }
+ .container {
+ }
+}
+
+p {
+ margin-bottom: 0;
+}
+
+a {
+ text-decoration: underline dotted;
+ text-decoration-thickness: 1px;
+ color: black;
+}
+
+a:hover {
+ text-decoration: underline;
+ color: #dd1b26;
+}
+
+.title {
+ font-size: 200%;
+ font-weight: bold;
+ color: #dd1b26;
+ text-decoration: none;
+ letter-spacing: -1px;
+}
+
+.subtitle {
+ font-weight: bold;
+ font-size: large;
+ margin-bottom: -.5em;
+}
+
+.category {
+ font-size: large;
+ font-style: italic;
+ margin-bottom: -.3em;
+ margin-top: 1.8em;
+}
+
+.work {
+ margin-left: 1em;
+}
+
+.work-title {
+ letter-spacing: -1px;
+}
+
+.contact {
+ margin-top: .3em;
+ font-style: italic;
+ font-size: small;
+}
+
+.home {
+ font-style: italic;
+ font-size: 20px;
+ letter-spacing: -1px;
+}
+
+.home > span {
+ font-size: 16px;
+}
+
+.site {
+ font-size: 16px;
+}
+
+.crumbs {
+ font-size: small;
+ padding-left: 2em;
+}
+
+.crumbs a {
+ white-space: nowrap;
+}
+
+.home-title {
+ font-weight: bold;
+ color: #dd1b26;
+}
+
+.sep {
+ margin-left: 3px;
+ margin-right: 3px;
+}
+
+.header {
+ text-align: center;
+}
+
+.source {
+ float: right;
+ font-size: small !important;
+ font-family: monospace;
+ font-style: normal;
+}