mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2025-04-01 22:23:28 +03:00
23 lines
527 B
SCSS
23 lines
527 B
SCSS
/*
|
|
* Copyright (C) 2022 Aravinth Manivannan <realaravinth@batsense.net>
|
|
* SPDX-FileCopyrightText: 2023 Aravinth Manivannan <realaravinth@batsense.net>
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
@mixin violet-button-hover {
|
|
background-color: $light-violet;
|
|
cursor: pointer;
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
@mixin violet-button {
|
|
background-color: $violet;
|
|
color: $light-text;
|
|
border-radius: 5px;
|
|
border: 1px $light-grey solid;
|
|
padding: 5px;
|
|
font-size: 20px;
|
|
min-height: 45px;
|
|
width: 125px;
|
|
}
|