mirror of
https://github.com/nextcloud/server.git
synced 2025-02-22 07:59:13 +00:00
53 lines
680 B
SCSS
53 lines
680 B
SCSS
/*!
|
|
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2015 ownCloud Inc.
|
|
* SPDX-FileCopyrightText: 2015 Raghu Nayyar, http://raghunayyar.com
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
/* 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;
|
|
}
|