aboutsummaryrefslogtreecommitdiffstats
path: root/static
diff options
context:
space:
mode:
Diffstat (limited to 'static')
-rw-r--r--static/css/fripost.css48
1 files changed, 48 insertions, 0 deletions
diff --git a/static/css/fripost.css b/static/css/fripost.css
new file mode 100644
index 0000000..3b1d242
--- /dev/null
+++ b/static/css/fripost.css
@@ -0,0 +1,48 @@
+html,
+body {
+ height: 100%;
+ /* The html and body elements cannot have any padding or margin. */
+}
+
+body {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+}
+body > header.lead {
+ font-size: 3rem;
+}
+a.brand:link,
+a.brand:visited,
+a.brand:hover,
+a.brand:active {
+ color: black;
+ text-decoration: none;
+}
+.login {
+ max-width: 30em;
+ margin-right: auto;
+ margin-left: auto;
+}
+.login form {
+ width: 100%;
+}
+.login form .input-group {
+ margin-bottom: 1ex;
+}
+.login .well {
+ margin-bottom: 0;
+}
+.login .well + .well-footer {
+ margin-top: .5ex;
+}
+body > footer {
+ background-color: #f5f5f5;
+ position: absolute;
+ width: 100%;
+ bottom: 0;
+}
+body > footer.container {
+ padding: 1ex 2ex 0 2ex;
+ width: 100%;
+}