diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-03-09 15:36:03 -0600 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-03-09 15:36:03 -0600 |
commit | 0c22a6696703225baabd6a4afaad5759745da8c5 (patch) | |
tree | ea82aebfb153fcae04f0338dc2ba4a7a28383c7b /core/css/global.scss | |
parent | f2cf85fad2f25caf293126ca1058fe3e9109c75f (diff) | |
download | nextcloud-server-0c22a6696703225baabd6a4afaad5759745da8c5.tar.gz nextcloud-server-0c22a6696703225baabd6a4afaad5759745da8c5.zip |
Add more styles to the server.scss
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'core/css/global.scss')
-rw-r--r-- | core/css/global.scss | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/core/css/global.scss b/core/css/global.scss new file mode 100644 index 00000000000..9511d4324fa --- /dev/null +++ b/core/css/global.scss @@ -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 |