aboutsummaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
authorKumar Damani <me@kumardamani.net>2024-08-14 19:52:52 +0000
committerKumar Damani <me@kumardamani.net>2024-08-14 19:52:52 +0000
commit61116d82dd381741c91497ea2b51c2f3ad211e93 (patch)
tree3fa73f68385e8914a1bfebd1fe590873b543c41b /style.css
parent5ae7c22764530f84359a3414ced331c9cd08a17e (diff)
moving stuff around
Diffstat (limited to 'style.css')
-rw-r--r--style.css88
1 files changed, 0 insertions, 88 deletions
diff --git a/style.css b/style.css
deleted file mode 100644
index 9e664c4..0000000
--- a/style.css
+++ /dev/null
@@ -1,88 +0,0 @@
-@font-face {
- font-family: 'GOTFont';
- src: url('fonts/gameofthrones.ttf');
-}
-
-html {
- --s: 60px; /* control the size*/
- --c1: #b09f79;
- --c2: #000000;
-
- --_g: #0000 83%,var(--c1) 85% 99%,#0000 101%;
- background:
- radial-gradient(27% 29% at right ,var(--_g)) calc(var(--s)/ 2) var(--s),
- radial-gradient(27% 29% at left ,var(--_g)) calc(var(--s)/-2) var(--s),
- radial-gradient(29% 27% at top ,var(--_g)) 0 calc(var(--s)/ 2),
- radial-gradient(29% 27% at bottom,var(--_g)) 0 calc(var(--s)/-2)
- var(--c2);
- background-size: calc(2*var(--s)) calc(2*var(--s));
-}
-
-body {
- background: #faf0e5;
- opacity: 0.97;
- padding: 10px;
-}
-
-h1 {
- font-family: 'GOTFont', Georgia, serif;
-}
-
-.legible {
- color: white;
- text-shadow:
- 0.05em 0 black,
- 0 0.05em black,
- -0.05em 0 black,
- 0 -0.05em black,
- -0.05em -0.05em black,
- -0.05em 0.05em black,
- 0.05em -0.05em black,
- 0.05em 0.05em black;
-}
-
-.container {
- margin: 0;
- padding: 0;
- display: flex;
- justify-content: center;
- flex-wrap: wrap;
-}
-
-.flex {
- padding: 10px;
- border: 3px solid #faf0e5;
- color: white;
- font-size: 14px;
- text-align: center;
- position: relative;
- margin-bottom: 33px;
-}
-
-.flex1 {
- min-width: 150px;
-}
-
-.flex2 {
- font-size: large;
- text-align: left;
-}
-
-.alert {
- margin-bottom: 15px;
- padding: 20px;
- background-color: orange; /* Red */
- color: white;
-}
-
-/* The close button */
-.closebtn {
- margin-left: 15px;
- color: white;
- font-weight: bold;
- float: right;
- font-size: 22px;
- line-height: 20px;
- cursor: pointer;
- transition: 0.3s;
-}