about summary refs log tree commit diff
path: root/stylesheets/styles.css
diff options
context:
space:
mode:
authorMartin Dosch <spam-git@mdosch.de>2017-11-30 20:27:15 +0100
committerGeorg Lukas <georg@op-co.de>2017-12-21 12:55:15 +0100
commit6a443681f57c9bc98aaac5f7c78062c5ff45c99b (patch)
tree8798f60aab6b41106b653d8f4bc0010c81101d1f /stylesheets/styles.css
parentab3b865325b9ca44da56e33a40cdde2f22065869 (diff)
downloadphp-xmpp-invitation-6a443681f57c9bc98aaac5f7c78062c5ff45c99b.tar.gz
Get rid of bootstrap.
Diffstat (limited to 'stylesheets/styles.css')
-rw-r--r--stylesheets/styles.css66
1 files changed, 66 insertions, 0 deletions
diff --git a/stylesheets/styles.css b/stylesheets/styles.css
new file mode 100644
index 0000000..a33d589
--- /dev/null
+++ b/stylesheets/styles.css
@@ -0,0 +1,66 @@
+html {
+font-size: 1em;
+font-family: sans-serif;
+}
+
+.text-center {
+    text-align: center;
+}
+
+.h3 {
+    font-size: 2em;
+    line-height: 1.1;
+    color: #444;
+}
+
+.btn {
+    display: inline-block;
+    margin-bottom: 0;
+    font-weight: normal;
+    text-align: center;
+    vertical-align: middle;    text-transform: uppercase;
+    border-right: none;
+    border-bottom: none;
+    color: #666;
+    text-decoration: none;
+    transition: all .2s;
+    touch-action: manipulation;
+    cursor: pointer;
+    border: 1px solid transparent;
+    white-space: nowrap;
+    padding: 6px 16px;
+    font-size: 13px;
+    line-height: 1.846;
+    border-radius: 3px;
+    -webkit-user-select: none;
+    -moz-user-select: none;
+}
+
+textarea, textarea.form-control, input.form-control, input[type="text"], input[type="password"], input[type="email"], input[type="number"], .form-control[type="text"], .form-control[type="password"], .form-control[type="email"], .form-control[type="tel"] {
+    padding: 0;
+    border: none;
+    border-radius: 0;
+    -webkit-box-shadow: inset 0 -1px 0 #ddd;
+    box-shadow: inset 0 -1px 0 #ddd;
+    font-size: 1.1em;
+}
+
+.form-control {
+    display: block;
+    width: 100%;
+    height: 37px;
+    line-height: 1.846;
+    color: #666;
+    background-color: transparent;
+    background-image: none;
+    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
+    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
+    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
+    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
+}
+
+input, button {
+    -webkit-font-smoothing: antialiased;
+    letter-spacing: .1px;
+    text-rendering: optimizeLegibility;
+}