summaryrefslogtreecommitdiff
path: root/config/qutebrowser/startpage
diff options
context:
space:
mode:
authorSuleyman Farajli <suleyman@farajli.net>2024-07-29 15:06:33 +0400
committerSuleyman Farajli <suleyman@farajli.net>2024-07-29 15:06:33 +0400
commit06dfaea73429e1957a8646a892df21828f4f7ed2 (patch)
tree5762597020ba335faf0991bd1dbf07c819ae7b38 /config/qutebrowser/startpage
parent63b073a3583929dd4ff059498ad0bbc4263d7fd4 (diff)
qutebrowser: config minimalized
Diffstat (limited to 'config/qutebrowser/startpage')
-rwxr-xr-xconfig/qutebrowser/startpage/css/main.css204
-rwxr-xr-xconfig/qutebrowser/startpage/fonts/woff/JetBrainsMono-Bold-Italic.woffbin68104 -> 0 bytes
-rwxr-xr-xconfig/qutebrowser/startpage/fonts/woff/JetBrainsMono-Bold.woffbin63612 -> 0 bytes
-rwxr-xr-xconfig/qutebrowser/startpage/fonts/woff/JetBrainsMono-ExtraBold-Italic.woffbin67208 -> 0 bytes
-rwxr-xr-xconfig/qutebrowser/startpage/fonts/woff/JetBrainsMono-ExtraBold.woffbin62548 -> 0 bytes
-rwxr-xr-xconfig/qutebrowser/startpage/fonts/woff/JetBrainsMono-Italic.woffbin65576 -> 0 bytes
-rwxr-xr-xconfig/qutebrowser/startpage/fonts/woff/JetBrainsMono-Medium-Italic.woffbin67700 -> 0 bytes
-rwxr-xr-xconfig/qutebrowser/startpage/fonts/woff/JetBrainsMono-Medium.woffbin63404 -> 0 bytes
-rwxr-xr-xconfig/qutebrowser/startpage/fonts/woff/JetBrainsMono-Regular.woffbin62260 -> 0 bytes
-rwxr-xr-xconfig/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Bold-Italic.woff2bin53364 -> 0 bytes
-rwxr-xr-xconfig/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Bold.woff2bin49892 -> 0 bytes
-rwxr-xr-xconfig/qutebrowser/startpage/fonts/woff2/JetBrainsMono-ExtraBold-Italic.woff2bin52196 -> 0 bytes
-rwxr-xr-xconfig/qutebrowser/startpage/fonts/woff2/JetBrainsMono-ExtraBold.woff2bin48952 -> 0 bytes
-rwxr-xr-xconfig/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Italic.woff2bin50936 -> 0 bytes
-rwxr-xr-xconfig/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Medium-Italic.woff2bin52928 -> 0 bytes
-rwxr-xr-xconfig/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Medium.woff2bin49592 -> 0 bytes
-rwxr-xr-xconfig/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Regular.woff2bin48700 -> 0 bytes
-rw-r--r--[-rwxr-xr-x]config/qutebrowser/startpage/index.html28
18 files changed, 18 insertions, 214 deletions
diff --git a/config/qutebrowser/startpage/css/main.css b/config/qutebrowser/startpage/css/main.css
deleted file mode 100755
index aa46c6b..0000000
--- a/config/qutebrowser/startpage/css/main.css
+++ /dev/null
@@ -1,204 +0,0 @@
-@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
-.roboto {
- font-family: "Roboto", sans-serif; }
-
-@font-face {
- font-family: "JetBrains Mono";
- src: url("../fonts/woff/JetBrainsMono-Regular.woff") format("woff"), url("../fonts/woff2/JetBrainsMono-Regular.woff2") format("woff2"); }
-
-.jetbrains-mono, body {
- font-family: "JetBrains Mono"; }
-
-body {
- height: 97.5vh;
- display: flex;
- align-items: center;
- justify-content: center;
- background: #212121;
- color: #fff; }
- @media screen and (max-height: 501px) {
- body {
- display: block;
- height: 100vh; } }
-.main {
- width: 100%;
- text-align: center; }
- .main #date h2 {
- padding-top: 15px;
- display: inline-block;
- vertical-align: top; }
- .main #date-text,
- .main #weather-text {
- color: #d9d9d9; }
- .main #message-text {
- font-size: 23px; }
- .main #search-bar {
- width: 50%;
- margin: 0 auto 50px auto;
- height: 45px;
- padding-top: 35px;
- position: relative;
- display: inline-block; }
- .main #search-bar #search-bar-input {
- height: 50px;
- width: 100%;
- background: #2e2e2e;
- box-shadow: none;
- border: none;
- text-align: center;
- border-radius: 6px;
- outline: none;
- padding: 7px 14px;
- font-size: 18px;
- color: #fff;
- box-sizing: border-box; }
- .main #search-bar #search-bar-input:focus {
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
- transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
- .main #search-bar .autocomplete-items-container {
- position: absolute;
- top: 100%;
- left: 0;
- right: 0;
- z-index: 99;
- border-radius: 6px;
- background: #2e2e2e;
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
- transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
- .main #search-bar .autocomplete-items-container .autocomplete-item {
- width: 100%;
- background: #2e2e2e;
- box-shadow: none;
- border: none;
- text-align: center;
- outline: none;
- padding: 7px 14px;
- font-size: 18px;
- color: #fff;
- box-sizing: border-box;
- z-index: -1;
- cursor: pointer; }
- .main #search-bar .autocomplete-items-container .autocomplete-item:hover {
- background: #3b3b3b; }
- .main #search-bar .autocomplete-items-container .autocomplete-active {
- background: #353535; }
- @media only screen and (max-width: 791px) {
- .main #search-bar {
- width: 65%; } }
- .main #other-content {
- margin: 40px auto;
- padding: 10px 0; }
- .main #other-content .sqr {
- vertical-align: top;
- display: inline-block;
- margin-left: 5px;
- margin-right: 5px;
- width: 170px;
- background: #2e2e2e;
- padding: 15px 15px;
- border-radius: 6px;
- min-height: 150px;
- margin-top: 10px; }
- .main #other-content .sqr h4 {
- font-size: 18px;
- margin: 15px; }
- .main #other-content .sqr h4 a {
- color: inherit;
- font-size: inherit; }
- .main #other-content .sqr:hover {
- box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
- transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }
- .main #other-content .sqr a {
- color: #9e9e9e;
- font-size: 16px;
- transition: 0.1s ease-in;
- display: block;
- text-decoration: none;
- line-height: 22px; }
- .main #other-content .sqr a:hover {
- color: #fff;
- text-decoration: none;
- transition: 0.1s ease-in; }
- .main #other-content .media h4,
- .main #other-content .media a:hover {
- color: #4dd0e1; }
- .main #other-content .work h4,
- .main #other-content .work a:hover {
- color: #f06292; }
- .main #other-content .social h4,
- .main #other-content .social a:hover {
- color: #fff176; }
- .main #other-content .others h4,
- .main #other-content .others a:hover {
- color: #81c784; }
- .main #other-content .funky h4,
- .main #other-content .funky a:hover {
- color: #4db6ac; }
- .main #other-content .purple h4,
- .main #other-content .purple a:hover {
- color: #9575cd; }
- .main #other-content .upvoty h4,
- .main #other-content .upvoty a:hover {
- color: #ff8a65; }
- .main #other-content .indigo h4,
- .main #other-content .indigo a:hover {
- color: #7986cb; }
- .main #other-content .foxxy h4,
- .main #other-content .foxxy a:hover {
- color: #a1887f; }
-
-.settings-modal {
- display: none;
- position: fixed;
- z-index: 3;
- width: 80vw;
- height: 80vh;
- overflow: auto;
- background: #fff;
- color: #212121;
- padding: 15px; }
- .settings-modal .modal-content {
- width: 100%;
- height: 100%; }
- .settings-modal .close {
- color: #aaa;
- float: right;
- font-size: 28px;
- font-weight: bold; }
- .settings-modal .close:hover, .settings-modal .close:focus {
- color: black;
- text-decoration: none;
- cursor: pointer; }
- .settings-modal .release {
- color: #6b7280; }
- .settings-modal .update--available {
- visibility: hidden;
- color: #6b7280; }
- .settings-modal .backup-import {
- display: flex;
- align-items: center; }
- .settings-modal .backup-import .btn {
- box-shadow: none;
- border: none;
- text-align: center;
- border-radius: 5px;
- padding: 4px 16px;
- cursor: pointer;
- font-size: medium;
- color: white;
- background-color: #37474F; }
- .settings-modal .backup-import .import-btn {
- margin-left: 10px; }
-
-#settings-cog {
- width: 23px;
- height: 23px;
- position: absolute;
- bottom: 25px;
- right: 25px;
- transition: 2s ease-in;
- display: none; }
- #settings-cog:hover .cog {
- fill: white;
- stroke: white;
- transition: 2s ease-in; }
diff --git a/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-Bold-Italic.woff b/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-Bold-Italic.woff
deleted file mode 100755
index 0ec4bff..0000000
--- a/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-Bold-Italic.woff
+++ /dev/null
Binary files differ
diff --git a/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-Bold.woff b/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-Bold.woff
deleted file mode 100755
index dd2e280..0000000
--- a/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-Bold.woff
+++ /dev/null
Binary files differ
diff --git a/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-ExtraBold-Italic.woff b/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-ExtraBold-Italic.woff
deleted file mode 100755
index 8da8fe0..0000000
--- a/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-ExtraBold-Italic.woff
+++ /dev/null
Binary files differ
diff --git a/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-ExtraBold.woff b/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-ExtraBold.woff
deleted file mode 100755
index 4603980..0000000
--- a/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-ExtraBold.woff
+++ /dev/null
Binary files differ
diff --git a/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-Italic.woff b/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-Italic.woff
deleted file mode 100755
index b3172f2..0000000
--- a/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-Italic.woff
+++ /dev/null
Binary files differ
diff --git a/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-Medium-Italic.woff b/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-Medium-Italic.woff
deleted file mode 100755
index 5e95753..0000000
--- a/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-Medium-Italic.woff
+++ /dev/null
Binary files differ
diff --git a/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-Medium.woff b/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-Medium.woff
deleted file mode 100755
index 18ad34c..0000000
--- a/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-Medium.woff
+++ /dev/null
Binary files differ
diff --git a/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-Regular.woff b/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-Regular.woff
deleted file mode 100755
index 69b14ea..0000000
--- a/config/qutebrowser/startpage/fonts/woff/JetBrainsMono-Regular.woff
+++ /dev/null
Binary files differ
diff --git a/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Bold-Italic.woff2 b/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Bold-Italic.woff2
deleted file mode 100755
index 34b5c69..0000000
--- a/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Bold-Italic.woff2
+++ /dev/null
Binary files differ
diff --git a/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Bold.woff2 b/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Bold.woff2
deleted file mode 100755
index 84a008a..0000000
--- a/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Bold.woff2
+++ /dev/null
Binary files differ
diff --git a/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-ExtraBold-Italic.woff2 b/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-ExtraBold-Italic.woff2
deleted file mode 100755
index 09865c5..0000000
--- a/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-ExtraBold-Italic.woff2
+++ /dev/null
Binary files differ
diff --git a/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-ExtraBold.woff2 b/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-ExtraBold.woff2
deleted file mode 100755
index a8e7702..0000000
--- a/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-ExtraBold.woff2
+++ /dev/null
Binary files differ
diff --git a/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Italic.woff2 b/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Italic.woff2
deleted file mode 100755
index 85fd468..0000000
--- a/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Italic.woff2
+++ /dev/null
Binary files differ
diff --git a/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Medium-Italic.woff2 b/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Medium-Italic.woff2
deleted file mode 100755
index f22fa8b..0000000
--- a/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Medium-Italic.woff2
+++ /dev/null
Binary files differ
diff --git a/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Medium.woff2 b/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Medium.woff2
deleted file mode 100755
index 45a63c1..0000000
--- a/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Medium.woff2
+++ /dev/null
Binary files differ
diff --git a/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Regular.woff2 b/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Regular.woff2
deleted file mode 100755
index d5b94cb..0000000
--- a/config/qutebrowser/startpage/fonts/woff2/JetBrainsMono-Regular.woff2
+++ /dev/null
Binary files differ
diff --git a/config/qutebrowser/startpage/index.html b/config/qutebrowser/startpage/index.html
index 3f7a84c..b848797 100755..100644
--- a/config/qutebrowser/startpage/index.html
+++ b/config/qutebrowser/startpage/index.html
@@ -1,16 +1,24 @@
<!DOCTYPE html>
<html lang="en">
<head>
- <meta charset="UTF-8">
- <title>startpage</title>
- <!--Custom CSS-->
- <link rel="stylesheet" href="css/main.css">
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <link rel='stylesheet' type='text/css' href="style.css">
+ <title>startpage</title>
+ <style>
+ body {
+ height: 97.5vh;
+ display: flex;
+ align-items: center;
+ font: 12px monospace;
+ justify-content: center;
+ background: #212121;
+ color: #fff;
+ }
+ </style>
</head>
+
<body>
- </div>
- <div id="main" class="main">
- <div id="message">
- <h1 id="message-text">Qutebrowser</h1>
- </div>
- </body>
+ <h1>Qutebrowser</h1>
+</body>
</html>