diff options
author | Raghu Nayyar <hey@raghunayyar.com> | 2015-09-04 00:25:30 +0530 |
---|---|---|
committer | Raghu Nayyar <hey@raghunayyar.com> | 2015-11-02 20:54:02 +0530 |
commit | 56b537271ef591446f952c834257ae8eaac7e255 (patch) | |
tree | d81ab52a632b0f9ca50ed39439378c9a49157011 /core/css/global.css | |
parent | a8641fdc9559d67696fb612597c4b27d1832220a (diff) | |
download | nextcloud-server-56b537271ef591446f952c834257ae8eaac7e255.tar.gz nextcloud-server-56b537271ef591446f952c834257ae8eaac7e255.zip |
Global Classes for Core.
Move up the global styles up the hierarchy.
Adds Clear Left, Right and both.
New CSS file for Global Styles.
Diffstat (limited to 'core/css/global.css')
-rw-r--r-- | core/css/global.css | 50 |
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..9511d4324fa --- /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: auto; + width: 1px; + height: 1px; + overflow: hidden; +} + +.bold { + font-weight:600; +} + +.center { + text-align:center; +} + +.inlineblock { + display: inline-block; +}
\ No newline at end of file |