2021-05-03 14:54:03 +00:00
|
|
|
/*
|
2023-04-18 09:20:12 +00:00
|
|
|
* Copyright © 2023 Aravinth Manivnanan <realaravinth@batsense.net>.
|
2023-06-26 08:29:03 +00:00
|
|
|
* SPDX-FileCopyrightText: 2023 Aravinth Manivannan <realaravinth@batsense.net>
|
2021-05-03 14:54:03 +00:00
|
|
|
*
|
2023-06-26 08:29:03 +00:00
|
|
|
* SPDX-License-Identifier: MIT OR Apache-2.0
|
2021-05-03 14:54:03 +00:00
|
|
|
*/
|
|
|
|
|
2021-04-09 08:51:43 +00:00
|
|
|
* {
|
|
|
|
margin: 0;
|
2021-05-01 09:11:22 +00:00
|
|
|
padding: 0;
|
2021-05-03 14:54:03 +00:00
|
|
|
font-family: Arial, Helvetica, sans-serif;
|
2021-05-09 11:09:52 +00:00
|
|
|
|
|
|
|
// check all layouts
|
|
|
|
box-sizing: border-box;
|
2021-04-09 08:51:43 +00:00
|
|
|
}
|
2021-04-30 12:00:40 +00:00
|
|
|
|
|
|
|
a {
|
2021-05-01 09:11:22 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
2021-07-03 17:02:40 +00:00
|
|
|
// list-style: none;
|
2021-05-01 09:11:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
2021-05-03 14:54:03 +00:00
|
|
|
height: 100%;
|
2021-05-09 11:09:52 +00:00
|
|
|
box-sizing: border-box;
|
2021-05-01 09:11:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2021-05-03 14:54:03 +00:00
|
|
|
height: 100%;
|
2021-04-30 12:00:40 +00:00
|
|
|
}
|