summaryrefslogtreecommitdiff
path: root/css/style.css
diff options
context:
space:
mode:
authorWindowsAddict2025-08-27 22:10:34 +0000
committerWindowsAddict2025-08-27 22:10:34 +0000
commitb79252abe13b95c5dee1a85ed86ea78e814855df (patch)
tree7e80a74992a2715c483c95560079287c21fc50b9 /css/style.css
parenta38235a6345795c385edd3b151ea6bef74f949aa (diff)
downloadactivated.win-b79252abe13b95c5dee1a85ed86ea78e814855df.zip
Update to work with worker site
Diffstat (limited to 'css/style.css')
-rw-r--r--css/style.css91
1 files changed, 0 insertions, 91 deletions
diff --git a/css/style.css b/css/style.css
deleted file mode 100644
index a9902c1..0000000
--- a/css/style.css
+++ /dev/null
@@ -1,91 +0,0 @@
-html {
- height: 100%;
-}
-
-body {
- margin: 0;
- min-height: 100%;
-
- background-color: #000;
- background-image: url('../img/bg.png');
- background-repeat: no-repeat;
- background-size: cover;
- background-attachment: fixed;
- background-position: center;
-
- color: #fff;
- font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
- text-shadow: 1px 1px 2px #0004;
- font-size: 11pt;
-
- display: flex;
- align-items: center;
- justify-content: center;
- flex-direction: column;
-}
-
-main {
- text-align: center;
- max-width: 800px;
- padding: 16px;
- margin: auto;
- background-color: #fff2;
- border-radius: 8px;
- box-shadow: 5px 5px 20px #0002;
- border: 1px solid #fff3;
-}
-
-code {
- font-family: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
-}
-
-a {
- color: #fff;
-}
-
-a:hover,
-.github-links a:hover > img {
- opacity: 80%;
-}
-
-a:active,
-.github-links a:active > img {
- opacity: 70%;
-}
-
-hr {
- border: none;
- border-top: 1px solid #fff5;
- width: 100%;
-}
-
-.logo {
- height: 160px;
- margin: 0 0 -24px 0;
-}
-
-.github-links {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: space-around;
- margin: 2em 0 16px 0;
-}
-
-.github-links a {
- display: block;
- text-decoration: none;
-}
-
-.github-links img {
- filter: drop-shadow(1px 1px 2px #0004);
- height: 64px;
-}
-
-@media (max-width: 832px) {
- main {
- border-radius: 0;
- border-left: none;
- border-right: none;
- }
-}