Posted On April 4, 2019

Basic CSS: Inherit Styles from the Body Element

kimconnect 0 comments
blog.KimConnect.com >> Codes >> Basic CSS: Inherit Styles from the Body Element
<style>
body {
background-color: black;
}

</style>

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Quick 1-liner: Secured File Transfer using PSCP

pscp.exe c:\origin\ root@serverIP:/path_to_destination

Add Chocolatey Private Repo

$privateRepo='kimconnectrepo' $privateRepoUrl='https://choco.kimconnect.net/chocolatey' $priority=1 # Set private repo source if it doesn't exist function addRepo{ param(…

How To Use Command Line to Configure iDrac Settings

Step 1: Install RacADM $computerlist=@' SERVER1 SERVER2 '@ $computernames=@($computerlist -split "`n")|%{$_.Trim()} $fileURL="https://dl.dell.com/FOLDER08543783M/1/DellEMC-iDRACTools-Web-WINX64-10.3.0.0-4945.exe" $expectedExecutable='racadm.exe' $expectedInstallPath='C:\Program Files\Dell\SysMgt\iDRACTools\racadm'…