Skip to content

Instantly share code, notes, and snippets.

@lh1207
Forked from Vivelin/Custom CSS.css
Last active February 13, 2023 08:06
Show Gist options
  • Save lh1207/920063e042b20917658f27fa99fad228 to your computer and use it in GitHub Desktop.
Save lh1207/920063e042b20917658f27fa99fad228 to your computer and use it in GitHub Desktop.
Tabliss custom CSS for bigger widgets and transparent search box

Tabliss Custom CSS

This CSS file is designed to customize the appearance of Tabliss, a personalized new tab extension for web browsers. By using the Custom CSS feature in Tabliss, you can easily modify the look and feel of your new tab page to suit your personal style and preferences.

image

Usage

To use this CSS file, simply follow these steps:

Install the Tabliss extension for your supported browser.
Go to the Tabliss settings by clicking on the Tabliss icon in the toolbar.
Select the "Custom CSS" option and paste the contents of the CSS file below into the text box.
Click the "Save" button to apply the changes.

Customization

Feel free to modify this CSS file to suit your personal needs. You can change the colors, fonts, and other styles to match your taste.

Here are a few examples of what you can do:

Change the background color:

body {
  background-color: #your-color-here;
}

Change the font family:

body {
  font-family: "your-font-here", sans-serif;
}

Change the font size:

body {
    font-size: your-font-size-here;
}

Contributing

This CSS file is open-source and available on GitHub. If you have any suggestions or improvements, feel free to submit a pull request. Your contributions are welcome!

License

This CSS file is licensed under the MIT license. Please see the LICENSE file for more information.

.Widgets .container {
width: 100%;
text-align: center;
}
.Widgets .container .Time {
margin: 1rem 0;
font-size: 32pt;
}
.Quote {
font-size: 16pt;
padding: 3rem;
text-align: center;
}
.Links a {
text-decoration: none;
margin-right: 1rem;
}
.Links a:hover {
color: lightgreen;
}
.Unsplash .image {
filter: blur(3px);
transform: scale(1.1);
}
.details {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
dl {
display: flex;
text-align: center;
padding-left: 35px;
}
dd {
padding-left: 20px;
padding-right: 40px;
}
.Search input {
width: 300px;
height: 40px;
border-radius: 20px;
border: none;
padding-left: 20px;
font-size: 14pt;
box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
background-color: rgba(255, 255, 255, 0);
}
.Search input::placeholder {
color: #bbbbbb;
opacity: 0.54;
}
.Search input:focus {
border: solid 1px white;
box-shadow: 0 0 0 1px white;
background-color: transparent;
}
.Overlay, .credit {
opacity: 0.75;
color: grey;
font-family: inherit;
}
.credit:hover {
opacity: 1.0;
}
.Overlay:hover {
opacity: 1.0;
}

MIT License

Copyright (c) 2023 Levi Huff

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment