2021-05-03 20:24:03 +05:30
|
|
|
/*
|
2023-04-18 11:20:12 +02:00
|
|
|
* mCaptcha is a PoW based DoS protection software.
|
|
|
|
* This is the frontend web component of the mCaptcha system
|
|
|
|
* Copyright © 2023 Aravinth Manivnanan <realaravinth@batsense.net>.
|
2021-05-03 20:24:03 +05:30
|
|
|
*
|
2023-04-18 11:20:12 +02:00
|
|
|
* Use of this source code is governed by Apache 2.0 or MIT license.
|
|
|
|
* You shoud have received a copy of MIT and Apache 2.0 along with
|
|
|
|
* this program. If not, see <https://spdx.org/licenses/MIT.html> for
|
|
|
|
* MIT or <http://www.apache.org/licenses/LICENSE-2.0> for Apache.
|
2021-05-03 20:24:03 +05:30
|
|
|
*/
|
|
|
|
|
2021-04-09 14:21:43 +05:30
|
|
|
* {
|
|
|
|
margin: 0;
|
2021-05-01 14:41:22 +05:30
|
|
|
padding: 0;
|
2021-05-03 20:24:03 +05:30
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2021-05-09 16:39:52 +05:30
|
|
|
|
|
|
|
// check all layouts
|
|
|
|
box-sizing: border-box;
|
2021-04-09 14:21:43 +05:30
|
|
|
}
|
2021-04-30 17:30:40 +05:30
|
|
|
|
|
|
|
a {
|
2021-05-01 14:41:22 +05:30
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
2021-07-03 22:32:40 +05:30
|
|
|
// list-style: none;
|
2021-05-01 14:41:22 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
2021-05-03 20:24:03 +05:30
|
|
|
height: 100%;
|
2021-05-09 16:39:52 +05:30
|
|
|
box-sizing: border-box;
|
2021-05-01 14:41:22 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2021-05-03 20:24:03 +05:30
|
|
|
height: 100%;
|
2021-04-30 17:30:40 +05:30
|
|
|
}
|