aboutsummaryrefslogtreecommitdiff
path: root/src/css/style.css
diff options
context:
space:
mode:
authorCullum Smith <cullum@sacredheartsc.com>2024-07-03 12:25:01 -0400
committerCullum Smith <cullum@sacredheartsc.com>2024-07-03 12:25:01 -0400
commit56a863f9f11340a9310907e4131b9dc7483df623 (patch)
treec2ea33489c2150bafd74f04e5c9af483f7c2fbf9 /src/css/style.css
downloadwebsite-56a863f9f11340a9310907e4131b9dc7483df623.tar.gz
initial commit
Diffstat (limited to 'src/css/style.css')
-rw-r--r--src/css/style.css105
1 files changed, 105 insertions, 0 deletions
diff --git a/src/css/style.css b/src/css/style.css
new file mode 100644
index 0000000..38fb832
--- /dev/null
+++ b/src/css/style.css
@@ -0,0 +1,105 @@
+html {
+ -moz-text-size-adjust: none;
+ -webkit-text-size-adjust: none;
+ text-size-adjust: none;
+}
+
+body {
+ color: #333;
+ margin: 1em auto 2em auto;
+ max-width: 43em;
+ padding: 0 1em;
+ font-family: "PT Sans", "Myriad Pro", "Trebuchet MS", Helvetica, sans-serif;
+}
+
+a {
+ color: #0074D9
+}
+
+a:visited {
+ color: #941352
+}
+
+blockquote {
+ border-left: 3px solid #ccc;
+ padding-left: 10px;
+}
+
+dt {
+ font-weight: bold;
+}
+
+header .subtitle {
+ margin-top: -1em;
+ margin-bottom: 21.44px;
+}
+
+.bloglist p:nth-of-type(2) {
+ margin-top: -8px;
+}
+
+header .date {
+ font-style: italic;
+ margin-bottom: 21.44px;
+}
+
+footer .date {
+ float: right;
+}
+
+footer {
+ font-style: italic;
+ font-size: 14px;
+ margin-top: 32px;
+}
+
+.logo {
+ float: right;
+ border-radius: 50%;
+}
+
+@media only screen and (max-device-width : 667px) {
+ .logo {
+ max-width: 66px;
+ }
+
+ footer .date {
+ float: none;
+ }
+}
+
+@media print {
+ .navbar {
+ display: none !important;
+ }
+}
+
+pre {
+ background-color: #f5f5f5;
+ border: 1px solid #ccc;
+ border-radius: 4px;
+ font-family: monospace;
+ line-height: 1.2;
+ padding: 8px;
+ white-space: pre;
+ word-wrap: normal;
+}
+
+.sourceCode {
+ overflow: auto;
+}
+
+details {
+ font-size: 87.5%;
+ margin: 0 1em;
+}
+
+.redacted {
+ background: black;
+ color: black;
+ cursor: default;
+}
+
+.right {
+ float: right;
+}