summaryrefslogtreecommitdiffstats
path: root/src/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'src/style.css')
-rw-r--r--src/style.css102
1 files changed, 102 insertions, 0 deletions
diff --git a/src/style.css b/src/style.css
new file mode 100644
index 0000000..746460f
--- /dev/null
+++ b/src/style.css
@@ -0,0 +1,102 @@
+@import url(https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700);
+
+*, *:before, *:after { box-sizing: border-box; }
+html {
+ background-color: #eee;
+}
+body {
+ font-size: 16px;
+ font-family: 'PT Sans';
+ max-width: 42rem;
+ margin: -1.5rem auto;
+ padding: 0 1rem;
+ border: 1px solid #ccc;
+ background-color: #fcfcfc;
+ -moz-hyphens:auto; -webkit-hyphens:auto;
+ -ms-hyphens:auto; hyphens:auto;
+}
+
+a, a:visited {
+ text-decoration: none;
+ color: #32609C;
+}
+a:hover {
+ color: #339;
+}
+
+header {
+ font-size: 0.9rem;
+ padding-top: 1.25rem;
+}
+header nav ul {
+ padding: 0;
+ font-size: 0.9rem;
+ font-family: 'DejaVu Sans Mono';
+ list-style-type: none;
+}
+header nav ul li {
+ display: inline;
+ margin-right: 0.5rem;
+}
+header nav a, header nav a:visited {
+ color: #444;
+}
+header nav a:hover {
+ color: #000;
+}
+header h1 {
+ margin: 0;
+}
+
+#content {
+ padding-bottom: 0.5rem;
+ color: #222;
+}
+
+#content > p:first-of-type:first-letter {
+ float: left;
+ color: #903;
+ font-size: 3rem;
+ line-height: 2rem;
+ padding-top: 0.4rem;
+ padding-right: 0.4rem;
+ padding-left: 0.1rem;
+ font-family: 'Georgia';
+}
+@media (max-width: 767px) {
+ #content > p:first-of-type:first-letter {
+ padding-top: 0.3rem;
+ padding-right: 0.2rem;
+ font-size: 2.7rem;
+ }
+}
+
+#users h3 {
+ margin: 0 0 -0.5rem 0;
+}
+#users ul {
+ list-style-type: none;
+ padding: 0 0 0 0.5rem;
+}
+
+#users ul li {
+ padding-bottom: 0.25rem;
+}
+
+.info-right {
+ font-size: 14px;
+ text-align: right;
+ margin: 0;
+}
+
+.botborder {
+ border-bottom: 0.15rem;
+ border-bottom-style: dotted;
+ border-bottom-color: #bbb;
+ padding-bottom: 0.5rem;
+}
+
+footer p {
+ color: #333;
+ margin: 1rem 0;
+}