passman/sass/partials/button.scss

46 lines
1.2 KiB
SCSS
Raw Normal View History

2016-10-19 23:44:19 +08:00
/**
* Nextcloud - passman
*
* @copyright Copyright (c) 2016, Sander Brand (brantje@gmail.com)
* @copyright Copyright (c) 2016, Marcos Zuriaga Miguel (wolfi@wolfi.es)
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
2016-09-11 05:30:17 +08:00
.button-geen{
background: #37ce02;
color: #fff;
}
.button-geen:hover{
background: lighten(#37ce02, 2%);
color: #fff;
}
.button-red{
background: #ce3702;
color: #fff;
}
.button-red:hover{
background: lighten(#ce3702, 2%);
color: #fff;
2016-09-16 03:21:34 +08:00
}
.link{
color: rgb(0, 102, 255) !important;
cursor: pointer;
}
.link:hover{
text-decoration: underline;
2016-09-11 05:30:17 +08:00
}