aboutsummaryrefslogtreecommitdiffstats
path: root/core/css/global.css
diff options
context:
space:
mode:
Diffstat (limited to 'core/css/global.css')
-rw-r--r--core/css/global.css50
1 files changed, 50 insertions, 0 deletions
diff --git a/core/css/global.css b/core/css/global.css
new file mode 100644
index 00000000000..d9ecc634d78
--- /dev/null
+++ b/core/css/global.css
@@ -0,0 +1,50 @@
+/* Copyright (c) 2015, Raghu Nayyar, http://raghunayyar.com
+ This file is licensed under the Affero General Public License version 3 or later.
+ See the COPYING-README file. */
+/* Global Components */
+.pull-left {
+ float: left;
+}
+
+.pull-right {
+ float: right;
+}
+
+.clear-left {
+ clear: left;
+}
+
+.clear-right {
+ clear: right;
+}
+
+.clear-both {
+ clear: both;
+}
+
+.hidden {
+ display: none;
+}
+
+.hidden-visually {
+ position: absolute;
+ left: -10000px;
+ top: -10000px;
+ width: 1px;
+ height: 1px;
+ overflow: hidden;
+}
+
+.bold {
+ font-weight: 600;
+}
+
+.center {
+ text-align: center;
+}
+
+.inlineblock {
+ display: inline-block;
+}
+
+/*# sourceMappingURL=global.css.map */