Showing posts with label Css. Show all posts
Showing posts with label Css. Show all posts

2020-04-04

Add GreyMode for Site

CSS:

.greyMode {
    -moz-filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    filter: gray; /* IE6-9 */
    filter: grayscale(100%);
}


Homepage:

<html class="greyMode">

2017-06-08

Adjust Long Text

apply following css

<style>
    .wordHide {
        vertical-align: middle;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 603px;
    }
</style>


just reference to class:

<td class="wordHide">

Setup VNC on Ubuntu 20.04

  sudo apt update sudo apt install xfce4 xfce4-goodies sudo apt install tigervnc-standalone-server sudo apt install tightvncserver vncserver...